import { AIConfigService } from './config.service';
import { UpdateConfigDto } from '../dto';
export declare class AIConfigController {
    private readonly configService;
    constructor(configService: AIConfigService);
    findAll(): Promise<{
        id: string;
        key: string;
        value: string;
        category: string;
        isActive: boolean;
        updatedAt: Date;
    }[]>;
    update(key: string, dto: UpdateConfigDto): Promise<{
        key: string;
        value: string;
        category: string;
        updatedAt: Date;
    }>;
}
