import { DiscoveryConfig } from "./discovery"; export interface Config extends DiscoveryConfig { REFRESH_TOKEN: string | null; ACCESS_TOKEN: string | null; REALM_ID: string | null; MAX_TIMEOUT_IN_MS?: number; } export declare const getConfig: any;