declare class YouCanCustomers { getCustomers({ limit, page, include, q, }: { limit?: number; page?: number; include?: string; q?: string; }): Promise<{ data: ICustomerResponse[]; meta: IMetaResponse; }>; getAllCustomers(): Promise<{ data: ICustomerResponse[]; }>; getCustomerById(customerId: string, include?: string): Promise; createCustomer(customer: ICustomer): Promise; deleteCustomer(customerId: string): Promise; updateCustomer(customerId: string, customer: ICustomer): Promise; createCustomerAddress(customerId: string, address: Partial): Promise; updateCustomerAddress(customerId: string, addressId: string, address: Partial): Promise; } export default YouCanCustomers;