import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FulfillmentMethod } from "./fulfillmentmethod.js"; import { FulfillmentTimeframe } from "./fulfillmenttimeframe.js"; export type Fulfillment = { method?: FulfillmentMethod | undefined; timeframe?: FulfillmentTimeframe | undefined; }; /** @internal */ export declare const Fulfillment$inboundSchema: z.ZodType; /** @internal */ export type Fulfillment$Outbound = { method?: string | undefined; timeframe?: string | undefined; }; /** @internal */ export declare const Fulfillment$outboundSchema: z.ZodType; export declare function fulfillmentToJSON(fulfillment: Fulfillment): string; export declare function fulfillmentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fulfillment.d.ts.map