import { BehaviorSubject } from "rxjs";
import { KoalaOauth2ConfigInterface } from "./koala-oauth2-config.interface";
export declare class KoalaOauthConfig {
    static config: BehaviorSubject<KoalaOauth2ConfigInterface>;
    static getConfig(): string;
    static hasConfig(): boolean;
    static setConfig(type: string): void;
    private static getOAuthConfig;
}
