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