export declare const NativeType: string; export declare const isAndroid: boolean; export declare const isIOS: boolean; declare const LENGTH_SHORT = 0; declare const LENGTH_LONG = 1; export declare type ToastDuration = typeof LENGTH_SHORT | typeof LENGTH_LONG; export interface SafeArea { top: number; bottom: number; left: number; right: number; } export declare function getSafeAreaInsets(): Promise; export declare function isIphoneXSeries(): any; export declare function isNavigationBarShow(): Promise; export declare function showToast(message: any, duration?: ToastDuration): void; export declare const currentDarkMode: any; export declare const language: string; export {};