import type { KeyData } from "./types/index.ts"; /** * Verifies a signature using the provided public key and data. * * @param params - The verification parameters. * @param params.key - The {@link KeyData} containing the public key. * @param params.data - The original data that was signed. * @param params.signature - The signature to verify. * @param params.algorithm - Optional algorithm to use. * @returns A promise that resolves to true if the signature is valid, false otherwise. */ export declare function verifyWithKeyData({ key, data, signature, }: { key: KeyData; data: Uint8Array; signature: Uint8Array; algorithm?: string; }): Promise; //# sourceMappingURL=verify.d.ts.map