import { BaseService } from "../../core/base-service.js"; import type { Empresa, EmpresaCreateOptions, EmpresaCreateParams, EmpresaListParams, EmpresaUpdateOptions, EmpresaUpdateParams } from "./types.js"; export declare class EmpresasService extends BaseService { create(params: EmpresaCreateParams, options?: EmpresaCreateOptions): Promise; list(params?: EmpresaListParams): Promise; get(id: string | number): Promise; update(id: string | number, params: EmpresaUpdateParams, options?: EmpresaUpdateOptions): Promise; remove(id: string | number): Promise; } //# sourceMappingURL=service.d.ts.map