import { DeviceInfo } from "./DeviceInfo"; import { NativeModuleResponse } from "./NativeModuleResponse"; export interface GenericUtilsModule { setStatusBarColor: (color: string) => Promise>; disableFlyout: () => Promise>; enableFlyout: () => Promise>; showToast: (message: string, duration?: string) => Promise>; getPlatformInfo: () => Promise>; getDeviceInfo: () => Promise; } export declare enum TOAST { SHORT = "SHORT", LONG = "LONG" }