import Wrapper from "./wrapper";
import { Customer } from "./types/cusrtomer";
import { Query, QueryResponse } from "./types/query";
declare class Customers {
    wrapper: Wrapper;
    constructor(wrapper: Wrapper);
    create(data: Partial<Customer>): Promise<Customer>;
    list(params: Query): Promise<QueryResponse<Customer>>;
    retrieve(id: string): Promise<Customer>;
    update(id: string, data: Partial<Customers>): Promise<Customer>;
    del(id: string): Promise<Customer>;
}
export default Customers;
