export declare const CONSOLE_LOGIN_LS_KEY = "TWILIO_FLEX_CONSOLE_LOGIN"; export type ConsoleLoginStorageParams = { isConsoleLogin: boolean; instanceSid?: string; tokenV1Flow?: boolean; }; export declare const ConsoleLoginStorage: { set(value: ConsoleLoginStorageParams): void; get(): ConsoleLoginStorageParams | undefined; clear(): void; };