/** * MetersService * AUTO-GENERATED — public merchant surface from filtered OpenAPI */ export declare class MetersService { /** * OpenAPI operationId: `MetersController_create`. * Create a meter */ static create(): Promise; /** * OpenAPI operationId: `MetersController_findOne`. * Get a meter */ static get(id: string): Promise; /** * OpenAPI operationId: `MetersController_getBalance`. * Get meter balance for a customer */ static getCustomerBalance(id: string, customerId: string): Promise; /** * OpenAPI operationId: `MetersController_findAll`. * List meters */ static list(options?: Record): Promise; /** * OpenAPI operationId: `MetersController_update`. * Update a meter */ static update(id: string): Promise; } //# sourceMappingURL=MetersService.d.ts.map