import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PreIpoCompany, PreIpoCompany$Outbound } from "./preipocompany.js"; /** * Response for listing Pre IPO Companies. */ export type ListPreIpoCompaniesResponse = { /** * A token to retrieve the next page of results. Pass this value in the `page_token` field of a subsequent `ListPreIpoCompaniesRequest` to retrieve the next page of results. If this field is omitted, there are no subsequent pages. */ nextPageToken?: string | undefined; /** * The Pre IPO Companies. */ preIpoCompanies?: Array | undefined; }; /** @internal */ export declare const ListPreIpoCompaniesResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPreIpoCompaniesResponse$Outbound = { next_page_token?: string | undefined; pre_ipo_companies?: Array | undefined; }; /** @internal */ export declare const ListPreIpoCompaniesResponse$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 ListPreIpoCompaniesResponse$ { /** @deprecated use `ListPreIpoCompaniesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListPreIpoCompaniesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListPreIpoCompaniesResponse$Outbound` instead. */ type Outbound = ListPreIpoCompaniesResponse$Outbound; } export declare function listPreIpoCompaniesResponseToJSON(listPreIpoCompaniesResponse: ListPreIpoCompaniesResponse): string; export declare function listPreIpoCompaniesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpreipocompaniesresponse.d.ts.map