import * as z from "zod/v3"; /** * Request body for changing an agreement's type. */ export type ChangeAgreementTypeRequest = { /** * The name of the target agreement type from the agreement-types collection. */ type: string; }; /** @internal */ export type ChangeAgreementTypeRequest$Outbound = { type: string; }; /** @internal */ export declare const ChangeAgreementTypeRequest$outboundSchema: z.ZodType; export declare function changeAgreementTypeRequestToJSON(changeAgreementTypeRequest: ChangeAgreementTypeRequest): string; //# sourceMappingURL=changeagreementtyperequest.d.ts.map