export type Algorithm = "HMAC" | "RSA" | "ECDSA" | "RSA-PSS"; export declare namespace Algorithm { function is(value: Algorithm | any): value is Algorithm; }