import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { AnthropicFile } from "./anthropicfile.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * A page of files in Anthropic's shape. */ export type AnthropicFileList = { shape: "anthropic"; data: Array; firstId: string | null; hasMore: boolean; lastId: string | null; }; /** @internal */ export declare const AnthropicFileList$inboundSchema: z.ZodType; export declare function anthropicFileListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropicfilelist.d.ts.map