import { SocialiteConfig } from "../../types/global";
/**
 * 配置对象
 */
export declare class Config {
    protected config: SocialiteConfig;
    constructor(config?: SocialiteConfig);
    get(key?: string, defaultValue?: any): any;
    set(key: string, value: any): Record<string, any>;
    has(key: string): boolean;
    offsetExists(key: string): boolean;
    offsetGet(key: string): any;
    offsetSet(key: string, value: any): void;
    offsetUnset(key: string): void;
    toString(): string;
}
