import { DataSource } from 'typeorm'; import { ConfigEntity } from './entities/Config.entity'; export declare class ConfigService { private db; constructor(db: DataSource); get(key: string): Promise; set(key: string, value: any): Promise<{ key: string; value: any; } & ConfigEntity>; }