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<ChangeAgreementTypeRequest$Outbound, z.ZodTypeDef, ChangeAgreementTypeRequest>;
export declare function changeAgreementTypeRequestToJSON(changeAgreementTypeRequest: ChangeAgreementTypeRequest): string;
//# sourceMappingURL=changeagreementtyperequest.d.ts.map