import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FileT, FileT$Outbound } from "./file.js"; export type FileList = { object: "list"; data: Array; firstId?: string | undefined; lastId?: string | undefined; hasMore: boolean; }; /** @internal */ export declare const FileList$inboundSchema: z.ZodType; /** @internal */ export type FileList$Outbound = { object: "list"; data: Array; first_id?: string | undefined; last_id?: string | undefined; has_more: boolean; }; /** @internal */ export declare const FileList$outboundSchema: z.ZodType; export declare function fileListToJSON(fileList: FileList): string; export declare function fileListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filelist.d.ts.map