export declare class InstanceAiConfig {
    model: string;
    modelUrl: string;
    modelApiKey: string;
    maxContextWindowTokens: number;
    mcpServers: string;
    lastMessages: number;
    embedderModel: string;
    semanticRecallTopK: number;
    subAgentMaxSteps: number;
    localGatewayDisabled: boolean;
    browserMcp: boolean;
    sandboxEnabled: boolean;
    sandboxProvider: string;
    daytonaApiUrl: string;
    daytonaApiKey: string;
    n8nSandboxServiceUrl: string;
    n8nSandboxServiceApiKey: string;
    sandboxImage: string;
    sandboxTimeout: number;
    braveSearchApiKey: string;
    searxngUrl: string;
    filesystemPath: string;
    gatewayApiKey: string;
    threadTtlDays: number;
    snapshotPruneInterval: number;
    snapshotRetention: number;
    confirmationTimeout: number;
}
