import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PreIpoCompanyFundingRound, PreIpoCompanyFundingRound$Outbound } from "./preipocompanyfundinground.js"; /** * Response for listing Pre IPO Company Funding Rounds. */ export type ListPreIpoCompanyFundingRoundsResponse = { /** * A token to retrieve the next page of results. Pass this value in the `page_token` field of a subsequent `ListPreIpoCompanyFundingRoundsRequest` to retrieve the next page of results. If this field is omitted, there are no subsequent pages. */ nextPageToken?: string | undefined; /** * The Pre IPO Company Funding Rounds. */ preIpoCompanyFundingRounds?: Array | undefined; }; /** @internal */ export declare const ListPreIpoCompanyFundingRoundsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPreIpoCompanyFundingRoundsResponse$Outbound = { next_page_token?: string | undefined; pre_ipo_company_funding_rounds?: Array | undefined; }; /** @internal */ export declare const ListPreIpoCompanyFundingRoundsResponse$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 ListPreIpoCompanyFundingRoundsResponse$ { /** @deprecated use `ListPreIpoCompanyFundingRoundsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListPreIpoCompanyFundingRoundsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListPreIpoCompanyFundingRoundsResponse$Outbound` instead. */ type Outbound = ListPreIpoCompanyFundingRoundsResponse$Outbound; } export declare function listPreIpoCompanyFundingRoundsResponseToJSON(listPreIpoCompanyFundingRoundsResponse: ListPreIpoCompanyFundingRoundsResponse): string; export declare function listPreIpoCompanyFundingRoundsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpreipocompanyfundingroundsresponse.d.ts.map