import { DBOSCloudCredentials } from '../cloudutils.js'; export interface CreateSecretRequest { ApplicationName: string; SecretName: string; ClearSecretValue: string; } export declare function createSecret(host: string, appName: string | undefined, secretName: string, secretValue: string): Promise; export declare function postCreateSecret(host: string, userCredentials: DBOSCloudCredentials, request: CreateSecretRequest): Promise; export declare function importSecrets(host: string, appName: string | undefined, envPath: string): Promise; export declare function listSecrets(host: string, appName: string | undefined, json: boolean): Promise; export declare function deleteSecret(host: string, appName: string | undefined, secretName: string): Promise; //# sourceMappingURL=secrets.d.ts.map