declare type Key = { modulus: string; exponent: string; }; declare function rsa_key(fingerprints: string[]): void | Key & { fingerprint: string; }; export default rsa_key;