export declare enum DigestAlgorithmLocation { 'sha1' = "http://www.w3.org/2001/04/xmlenc#sha1", 'sha256' = "http://www.w3.org/2001/04/xmlenc#sha256", 'sha512' = "http://www.w3.org/2001/04/xmlenc#sha512" } export declare enum SignatureAlgorithmLocation { 'rsa-sha1' = "http://www.w3.org/2000/09/xmldsig#rsa-sha1", 'rsa-sha256' = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256", 'rsa-sha512' = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha512" } export declare type SignatureAlgorithm = keyof typeof SignatureAlgorithmLocation; export declare type DigestAlgorithm = keyof typeof DigestAlgorithmLocation; interface AlgorithmResponse { digest: DigestAlgorithm; signature: SignatureAlgorithm; } export declare const getAlgorithms: (name?: DigestAlgorithm) => AlgorithmResponse; export {};