import { ICommandHandler, CommandBus } from '@nestjs/cqrs'; import { CreateProofCommand } from '../commands/create-proof.command'; import { NotaryProof } from '../notary-proof.entity'; import { NotaryService } from '../notary.service'; export declare class CreateProofHandler implements ICommandHandler { private readonly notaryService; private readonly commandBus; constructor(notaryService: NotaryService, commandBus: CommandBus); execute({ deviceId, readings }: CreateProofCommand): Promise; }