import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as shared from "../shared/index.js"; export type PartitionRequest = { partitionParameters: shared.PartitionParameters; unstructuredApiKey?: string | null | undefined; }; export type PartitionResponse = string | Array<{ [k: string]: any; }>; /** @internal */ export declare const PartitionRequest$inboundSchema: z.ZodType; /** @internal */ export type PartitionRequest$Outbound = { partition_parameters: shared.PartitionParameters$Outbound; "unstructured-api-key"?: string | null | undefined; }; /** @internal */ export declare const PartitionRequest$outboundSchema: z.ZodType; export declare function partitionRequestToJSON(partitionRequest: PartitionRequest): string; export declare function partitionRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PartitionResponse$inboundSchema: z.ZodType; /** @internal */ export type PartitionResponse$Outbound = string | Array<{ [k: string]: any; }>; /** @internal */ export declare const PartitionResponse$outboundSchema: z.ZodType; export declare function partitionResponseToJSON(partitionResponse: PartitionResponse): string; export declare function partitionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=partition.d.ts.map