import { RemoveHplContactLinkForm, RemoveHplContactLinkResult } from "../../../forms"; import { HplContactRepository } from "../../../repositories/persists/hplContactRepository/hplContactRepository"; import { BaseHandler, ILogger } from "@ic-wallet-kit/common"; import "reflect-metadata"; export declare class RemoveHplContactLinkHandler extends BaseHandler { private hplContactRepository; constructor(logger: ILogger, hplContactRepository: HplContactRepository); validate(form: RemoveHplContactLinkForm): Promise; process(form: RemoveHplContactLinkForm): Promise; }