import { PlatformOSType as RNPlatformOSType } from 'react-native'; export declare type PlatformOSType = RNPlatformOSType | 'sketch' | 'vr' | 'unknown' | 'default'; export interface PlatformStatic { OS: PlatformOSType; Version: number; inject?(platform: PlatformType): void; select?(specifics: { [platform in PlatformOSType]?: T; }): T; } export interface PlatformType { OS: PlatformStatic['OS']; Version: PlatformStatic['Version']; } export declare const Platform: PlatformStatic;