import { BixiAuthConfig } from './config.type'; export declare class BixiConfigService { private config; constructor(defaultConfig?: BixiAuthConfig); get(key?: string): BixiAuthConfig; merge(...defaultValues: R[]): R; attach(componentThis: any, defaultValues: R): void; attachKey(componentThis: any, key: string): void; set(value: BixiAuthConfig): void; }