import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { GetAPICharacterResponseData, GetAPICharacterResponseData$Outbound } from "./getapicharacterresponsedata.js"; export type GetAPICharacterListResponse = { /** * List of character items */ items: Array; /** * Total number of available characters (might be approximate or removed in future) */ total: number; /** * Token for fetching the next page of results. Null if no more pages. */ nextPageToken?: string | null | undefined; }; /** @internal */ export declare const GetAPICharacterListResponse$inboundSchema: z.ZodType; /** @internal */ export type GetAPICharacterListResponse$Outbound = { items: Array; total: number; next_page_token?: string | null | undefined; }; /** @internal */ export declare const GetAPICharacterListResponse$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 GetAPICharacterListResponse$ { /** @deprecated use `GetAPICharacterListResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAPICharacterListResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAPICharacterListResponse$Outbound` instead. */ type Outbound = GetAPICharacterListResponse$Outbound; } export declare function getAPICharacterListResponseToJSON(getAPICharacterListResponse: GetAPICharacterListResponse): string; export declare function getAPICharacterListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapicharacterlistresponse.d.ts.map