import type { InfraConfig } from './types'; export declare function getInfraConfig(): InfraConfig; interface DeployRecord { provider: string; project: string; timestamp: string; success: boolean; summary: string; } export declare function markProviderConnected(name: string, config: any): void; export declare function getConnectedProviders(): Record; export declare function recordDeploy(provider: string, project: string, success: boolean, summary: string): void; export declare function getDeployHistory(limit?: number): DeployRecord[]; export {}; //# sourceMappingURL=config.d.ts.map