import { Context } from "../../application/types"; import { ElectronicBillingService } from "../../application/services/electronic-billing.service"; import { RegisterScopeFourService } from "../../application/services/register-scope-four.service"; import { RegisterScopeFiveService } from "../../application/services/register-scope-five.service"; import { RegisterScopeTenService } from "../../application/services/register-scope-ten.service"; import { RegisterScopeThirteenService } from "../../application/services/register-scope-thirteen.service"; import { RegisterInscriptionProofService } from "../../application/services/register-inscription-proof.service"; import { GenericService } from "../../application/services/generic.service"; import { WsfecredService } from "../../application/services/wsfecred.service"; import { WsfexService } from "../../application/services/wsfex.service"; export declare class Arca { private readonly _electronicBillingService; private readonly _registerInscriptionProofService; private readonly _registerScopeFourService; private readonly _registerScopeFiveService; private readonly _registerScopeTenService; private readonly _registerScopeThirteenService; private readonly _genericService; private readonly _wsfecredService; private readonly _wsfexService; private readonly context; constructor(context: Context); get electronicBillingService(): ElectronicBillingService; get registerInscriptionProofService(): RegisterInscriptionProofService; get registerScopeFourService(): RegisterScopeFourService; get registerScopeFiveService(): RegisterScopeFiveService; get registerScopeTenService(): RegisterScopeTenService; get registerScopeThirteenService(): RegisterScopeThirteenService; get genericService(): GenericService; get wsfecredService(): WsfecredService; get wsfexService(): WsfexService; }