export declare const IS_WINDOW_AVAILABLE: boolean; export declare const IS_SCREEN_ORIENTATION_AVAILABLE: boolean; export declare const ScreenOrientation: { readonly PORTRAIT_PRIMARY: "portrait-primary"; readonly PORTRAIT_SECONDARY: "portrait-secondary"; readonly LANDSCAPE_PRIMARY: "landscape-primary"; readonly LANDSCAPE_SECONDARY: "landscape-secondary"; }; export type ScreenOrientationType = (typeof ScreenOrientation)[keyof typeof ScreenOrientation]; export declare const AVAILABLE_SCREEN_ORIENTATIONS: ("landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary")[];