import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChatMetadataResult } from "./chatmetadataresult.js"; export type ListChatsResponse = { chatResults?: Array | undefined; /** * An opaque cursor for fetching the next page of results. If empty, there are no more results. */ cursor?: string | undefined; }; /** @internal */ export declare const ListChatsResponse$inboundSchema: z.ZodType; export declare function listChatsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listchatsresponse.d.ts.map