export type ScreenOrientation = 'portrait' | 'landscape'; type UseScreenOrientationOptions = { initializeWithValue?: boolean; }; export declare function useScreenOrientation(options?: UseScreenOrientationOptions): ScreenOrientation | undefined; export {};