import * as z from "zod/v4"; /** * Workspace secrets to copy into the intern scope. */ export type VaultSecretCopyRequest = { /** * Names of workspace secrets to copy, 1 to 100 unique entries. Every name must exist in the workspace scope. */ names: Array; }; /** @internal */ export type VaultSecretCopyRequest$Outbound = { names: Array; }; /** @internal */ export declare const VaultSecretCopyRequest$outboundSchema: z.ZodType; export declare function vaultSecretCopyRequestToJSON(vaultSecretCopyRequest: VaultSecretCopyRequest): string; //# sourceMappingURL=vaultsecretcopyrequest.d.ts.map