export declare type Orientation = 'landscape' | 'portrait';
declare const useScreenOrientation: () => [Orientation, number];
export default useScreenOrientation;
