import type { Crypto } from '@peculiar/webcrypto'; interface Options { algorithm?: string; hash?: HashAlgorithmIdentifier; cryptoPolyfill?: Crypto; } /** * Import PEM-encoded private key */ export default function importPrivateKey(pemContent: string, keyUsages: KeyUsage[], options?: Options): Promise; export {};