import { type Platform } from 'react-native'; export declare const isIOS = false; export declare const isAndroid = false; export declare const isNative = false; export declare const isWeb = true; export declare const isFabric: boolean; /** * Identity function on web. Returns nothing on other platforms. * * Note: Platform splitting does not tree-shake away the other platforms, * so don't do stuff like e.g. rely on platform-specific imports. Use * platform-split files instead. */ export declare const web: (value: any) => any; /** * Identity function on iOS. Returns nothing on other platforms. * * Note: Platform splitting does not tree-shake away the other platforms, * so don't do stuff like e.g. rely on platform-specific imports. Use * platform-split files instead. */ export declare const ios: (value: any) => any; /** * Identity function on Android. Returns nothing on other platforms.. * * Note: Platform splitting does not tree-shake away the other platforms, * so don't do stuff like e.g. rely on platform-specific imports. Use * platform-split files instead. */ export declare const android: (value: any) => any; /** * Identity function on iOS and Android. Returns nothing on web. * * Note: Platform splitting does not tree-shake away the other platforms, * so don't do stuff like e.g. rely on platform-specific imports. Use * platform-split files instead. */ export declare const native: (value: any) => any; /** * Note: Platform splitting does not tree-shake away the other platforms, * so don't do stuff like e.g. rely on platform-specific imports. Use * platform-split files instead. */ export declare const platform: Platform["select"]; //# sourceMappingURL=index.d.ts.map