import { PLATFORM } from '../../utils/enums';
export declare const isWeb: boolean;
export declare const isIOS: boolean;
export declare const isAndroid: boolean;
export declare const isSketch: boolean;
export declare const getWindowHeight: () => number;
export declare const getWindowWidth: () => number;
export declare const setWindowHeight: (newHeight: number) => void;
export declare const setWindowWidth: (newWidth: number) => void;
export declare const getStorage: () => any;
export declare function getPlatform(): PLATFORM;
