/// <reference types="node" />
import { SigningKey } from '../types';
import { ALGOS } from '../types/hcert';
export default function verifySignature(message: Buffer, algo: ALGOS, keys: SigningKey[]): Promise<boolean | Error>;
