import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * File processing status counts. */ export type FileCounts = { /** * The number of files that are currently being processed. */ inProgress: number; /** * The number of files that have been successfully processed. */ completed: number; /** * The number of files that have failed to process. */ failed: number; /** * The number of files that were cancelled. */ cancelled: number; /** * The total number of files. */ total: number; }; /** @internal */ export declare const FileCounts$inboundSchema: z.ZodType; /** @internal */ export type FileCounts$Outbound = { in_progress: number; completed: number; failed: number; cancelled: number; total: number; }; /** @internal */ export declare const FileCounts$outboundSchema: z.ZodType; export declare function fileCountsToJSON(fileCounts: FileCounts): string; export declare function fileCountsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filecounts.d.ts.map