import { ProviderConfig } from "./types";
export declare class ConfigManager {
    private config;
    private configPath;
    constructor(configPath: string);
    getConfigPath(): string;
    getAll(): ProviderConfig;
    private validate;
    get<K extends keyof ProviderConfig>(key: K): ProviderConfig[K];
}
