import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CustomerResponse } from "./customer-response.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; /** * Response object for listing customers with pagination */ export type ListCustomersResponse = { items?: Array | undefined; pagination?: PaginationResponse | undefined; }; /** @internal */ export declare const ListCustomersResponse$inboundSchema: z.ZodMiniType; export declare function listCustomersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=list-customers-response.d.ts.map