import * as z from "zod/v4-mini"; import { SecretType } from "./secret-type.js"; export type CreateAPIKeyRequest = { expiresAt?: Date | undefined; name: string; serviceAccountId?: string | undefined; type: SecretType; }; /** @internal */ export type CreateAPIKeyRequest$Outbound = { expires_at?: string | undefined; name: string; service_account_id?: string | undefined; type: string; }; /** @internal */ export declare const CreateAPIKeyRequest$outboundSchema: z.ZodMiniType; export declare function createAPIKeyRequestToJSON(createAPIKeyRequest: CreateAPIKeyRequest): string; //# sourceMappingURL=create-api-key-request.d.ts.map