import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ContributionSummary, ContributionSummary$Outbound } from "./contributionsummary.js"; /** * Response object for aggregated contribution retirement summaries */ export type ListContributionSummariesResponse = { /** * List of contribution amount(s) and rollover amount(s), with their corresponding tax year(s) Entries will be sorted in descending order by tax year Starting with the current year */ contributionSummaries?: Array | undefined; /** * Can be sent as `page_token` in the request to retrieve the next page If this field is omitted, there are no subsequent pages */ nextPageToken?: string | undefined; }; /** @internal */ export declare const ListContributionSummariesResponse$inboundSchema: z.ZodType; /** @internal */ export type ListContributionSummariesResponse$Outbound = { contribution_summaries?: Array | undefined; next_page_token?: string | undefined; }; /** @internal */ export declare const ListContributionSummariesResponse$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 ListContributionSummariesResponse$ { /** @deprecated use `ListContributionSummariesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListContributionSummariesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListContributionSummariesResponse$Outbound` instead. */ type Outbound = ListContributionSummariesResponse$Outbound; } export declare function listContributionSummariesResponseToJSON(listContributionSummariesResponse: ListContributionSummariesResponse): string; export declare function listContributionSummariesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcontributionsummariesresponse.d.ts.map