import type { TextEncoderPolyfill } from './types'; interface ImportSecretKeyAlgorithmParams { name: string; hash?: HashAlgorithmIdentifier; } interface Options { textEncoderPolyfill?: TextEncoderPolyfill; } export default function importSecretKey(key: string | ArrayBuffer, keyUsages: KeyUsage[], algorithm: ImportSecretKeyAlgorithmParams, options?: Options): Promise; export {};