type OrientationType = 'portrait' | 'landscape'; /** * Hook check current device orientation * @returns current device orientation, 'portrait'(portrait) or 'landscape'(landscape) */ export declare function useOrientation(): OrientationType; export {};