import { XmlBuilder, BaseNFe, Environment, Utility } from '@treeunfe/shared'; import { GerarConsultaImpl, NFEconsultaProtocoloServiceImpl, SaveFilesImpl } from '@treeunfe/types/interfaces'; import { AxiosInstance } from 'axios'; declare class NFEconsultaProtocoloService extends BaseNFe implements NFEconsultaProtocoloServiceImpl { constructor(environment: Environment, utility: Utility, xmlBuilder: XmlBuilder, axios: AxiosInstance, saveFiles: SaveFilesImpl, gerarConsulta: GerarConsultaImpl); protected gerarXml(chave: string): string; } export default NFEconsultaProtocoloService;