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