export interface DeploySecretsOptions { rootDir?: string; restart?: boolean; dryRun?: boolean; } export interface DeploySecretsResult { success: boolean; message?: string; error?: string; } /** * Deploy secrets to staging and/or production servers */ export declare function deploySecrets(environment: 'staging' | 'prod' | 'all', options?: DeploySecretsOptions): Promise; export default deploySecrets; //# sourceMappingURL=deploy-secrets.d.ts.map