export interface IBearerConfig { integrationHost?: string; loadingComponent?: string; secured?: boolean; } export default class BearerConfig { integrationHost: string; authorizationHost: string; loadingComponent: string; postRobotLogLevel: 'debug' | 'info' | 'warn' | 'error'; secured: boolean; readonly clientId: string; constructor(options?: IBearerConfig); update(options: IBearerConfig): void; }