export declare class ConfigService {
    private readonly config;
    constructor(config: Record<string, any>);
    get<T>(key: string): T | undefined;
}
