import { AOperation } from './AOperation.js'; import MerchantCustomer from '../models/MerchantCustomer.js'; import PaginatedMerchantCustomers from '../models/PaginatedMerchantCustomers.js'; export declare class CustomerOperation extends AOperation { protected service: string; constructor({ accessKey, secretKey, language, timeout, }: { accessKey: string; secretKey: string; language?: string; timeout?: number; }); list(page?: number): Promise; create(data: Record): Promise; retrieve(id: number): Promise; update(id: number, data: Record): Promise; patch(id: number, data: Record): Promise; delete(id: number): Promise; } //# sourceMappingURL=CustomerOperation.d.ts.map