export type ModalPlatform = "desktop" | "mobile"; export interface ModalPlatformContextValue { platform: ModalPlatform; } export declare const ModalPlatformContext: import('react').Context; export declare function useModalPlatform(): ModalPlatformContextValue;