import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Agreement, Agreement$Outbound } from "./agreement.js"; /** * The response for affirming agreements. */ export type AffirmAgreementsResponse = { /** * The collection of affirmed legal agreements belonging to a given account. */ agreements?: Array | undefined; }; /** @internal */ export declare const AffirmAgreementsResponse$inboundSchema: z.ZodType; /** @internal */ export type AffirmAgreementsResponse$Outbound = { agreements?: Array | undefined; }; /** @internal */ export declare const AffirmAgreementsResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AffirmAgreementsResponse$ { /** @deprecated use `AffirmAgreementsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AffirmAgreementsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AffirmAgreementsResponse$Outbound` instead. */ type Outbound = AffirmAgreementsResponse$Outbound; } export declare function affirmAgreementsResponseToJSON(affirmAgreementsResponse: AffirmAgreementsResponse): string; export declare function affirmAgreementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=affirmagreementsresponse.d.ts.map