import type { VerifyOptions } from './types'; import type { SignVerifyAlgorithmParams } from '../types'; declare function verify(signature: ArrayBuffer, plaintext: string, key: CryptoKey, algorithm: SignVerifyAlgorithmParams, options?: VerifyOptions): Promise; export default verify;