declare function isApplePlatform(): boolean; declare function isIOS(): boolean; declare function isMacOS(): boolean; export declare const os: { isIOS: typeof isIOS; isApplePlatform: typeof isApplePlatform; isMacOS: typeof isMacOS; }; export {};