import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DocumentGetMetadata = string | number | number | boolean | Array; export type DocumentGet = { status: string; id: string; createdAt: Date; updatedAt: Date; name: string; metadata: { [k: string]: string | number | number | boolean | Array; }; partition: string; chunkCount?: number | null | undefined; externalId?: string | null | undefined; pageCount?: number | null | undefined; errors: Array; }; /** @internal */ export declare const DocumentGetMetadata$inboundSchema: z.ZodType; /** @internal */ export type DocumentGetMetadata$Outbound = string | number | number | boolean | Array; /** @internal */ export declare const DocumentGetMetadata$outboundSchema: z.ZodType; export declare function documentGetMetadataToJSON(documentGetMetadata: DocumentGetMetadata): string; export declare function documentGetMetadataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DocumentGet$inboundSchema: z.ZodType; /** @internal */ export type DocumentGet$Outbound = { status: string; id: string; created_at: string; updated_at: string; name: string; metadata: { [k: string]: string | number | number | boolean | Array; }; partition: string; chunk_count?: number | null | undefined; external_id?: string | null | undefined; page_count?: number | null | undefined; errors: Array; }; /** @internal */ export declare const DocumentGet$outboundSchema: z.ZodType; export declare function documentGetToJSON(documentGet: DocumentGet): string; export declare function documentGetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=documentget.d.ts.map