import { ICommandHandler } from '@nestjs/cqrs'; import { Repository } from 'typeorm'; import { PersistProofCommand } from '../commands/persist-proof.command'; import { NotaryProof } from '../notary-proof.entity'; export declare class PersistProofHandler implements ICommandHandler { private readonly repository; constructor(repository: Repository); execute({ deviceId, proof }: PersistProofCommand): Promise; }