import { BaseResource } from './BaseResource.js'; import type { RequestOptions, TagadaList } from '../types/common.js'; import type { Customer, CustomerListParams, CustomerCreateParams } from '../types/customers.js'; export declare class Customers extends BaseResource { /** * List customers with optional filtering by store, name, email, card, or tags. */ list(params?: CustomerListParams, opts?: RequestOptions): Promise>; /** * Create a new customer for a store. */ create(params: CustomerCreateParams, opts?: RequestOptions): Promise; /** * Retrieve a single customer by ID. */ retrieve(customerId: string, opts?: RequestOptions): Promise; } //# sourceMappingURL=Customers.d.ts.map