import { type BinaryResponse, type RequestConfig } from "./core/http.js"; import type { FocusNFeClientOptions } from "./core/types.js"; import { ConsultasService } from "./services/consultas/index.js"; import { CteService } from "./services/cte/index.js"; import { CteRecebidasService } from "./services/cte-recebidas/index.js"; import { EmpresasService } from "./services/empresas/index.js"; import { MdfeService } from "./services/mdfe/index.js"; import { NfceService } from "./services/nfce/index.js"; import { NfcomService } from "./services/nfcom/index.js"; import { NfeService } from "./services/nfe/index.js"; import { NfeRecebidasService } from "./services/nfe-recebidas/index.js"; import { NfseService } from "./services/nfse/index.js"; import { NfseNacionalService } from "./services/nfse-nacional/index.js"; import { NfseRecebidasService } from "./services/nfse-recebidas/index.js"; import { WebhooksService } from "./services/webhooks/index.js"; export declare class FocusNFeClient { private readonly _options; constructor(options: FocusNFeClientOptions); private _nfe?; get nfe(): NfeService; private _nfce?; get nfce(): NfceService; private _nfse?; get nfse(): NfseService; private _nfseNacional?; get nfseNacional(): NfseNacionalService; private _cte?; get cte(): CteService; private _mdfe?; get mdfe(): MdfeService; private _nfcom?; get nfcom(): NfcomService; private _nfeRecebidas?; get nfeRecebidas(): NfeRecebidasService; private _cteRecebidas?; get cteRecebidas(): CteRecebidasService; private _nfseRecebidas?; get nfseRecebidas(): NfseRecebidasService; private _empresas?; get empresas(): EmpresasService; private _webhooks?; get webhooks(): WebhooksService; private _consultas?; get consultas(): ConsultasService; request(config: RequestConfig): Promise; requestBinary(config: RequestConfig): Promise; } //# sourceMappingURL=client.d.ts.map