import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Customer } from "./customer.js"; import { DebugTrackerStatus } from "./debug-tracker-status.js"; import { ErrorResponse } from "./error-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CustomerLookupResult = { customer?: Customer | undefined; error?: ErrorResponse | undefined; status?: DebugTrackerStatus | undefined; }; /** @internal */ export declare const CustomerLookupResult$inboundSchema: z.ZodMiniType; export declare function customerLookupResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customer-lookup-result.d.ts.map