declare type OS = 'ios' | 'android' | 'web' | undefined; /** * Gets the environment in which the user is running the LIFF app. * @export */ export default function getOS(): OS; /** * Cleanup cached OS, testing use * @export */ export declare function _cleanupCachedOS(): void; export {};