import * as z from "zod/v4-mini"; export type VarsSecrets = { /** * Non-secret variables, name → value. Stored readable; returned only as fingerprints. */ vars?: { [k: string]: any; } | undefined; /** * Secret values, name → value. WRITE-ONLY: encrypted at rest with the provider-credential key, never returned by any route. */ secrets?: { [k: string]: any; } | undefined; }; /** @internal */ export type VarsSecrets$Outbound = { vars?: { [k: string]: any; } | undefined; secrets?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const VarsSecrets$outboundSchema: z.ZodMiniType; export declare function varsSecretsToJSON(varsSecrets: VarsSecrets): string; //# sourceMappingURL=vars-secrets.d.ts.map