import { EditHplVirtualAccountForm } from "../../../forms"; import { HplMintCacheDataHandler, HplOwnerCacheDataHandler, HplVirtualAccountCacheDataHandler } from "../../../internalHandlers/cacheDataHandlers"; import { CanisterService } from "../../../service"; import { HplVirtualAccount } from "../../../types"; import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-kit/common"; import "reflect-metadata"; export declare class EditHplVirtualAccountInternalHandler extends BaseHandler { private identifierService; private canisterService; private hplVirtualAccountCacheDataHandler; private hplOwnerCacheDataHandler; private hplMintCacheDataHandler; constructor(logger: ILogger, identifierService: IdentifierService, canisterService: CanisterService, hplVirtualAccountCacheDataHandler: HplVirtualAccountCacheDataHandler, hplOwnerCacheDataHandler: HplOwnerCacheDataHandler, hplMintCacheDataHandler: HplMintCacheDataHandler); validate(form: EditHplVirtualAccountForm): Promise; process(form: EditHplVirtualAccountForm): Promise; }