import * as crypto from "crypto"; type X509Certificate = crypto.X509Certificate; export declare const getX509CertChain: (certChain: string) => crypto.X509Certificate[]; export declare const getPublicKey: (certs: X509Certificate[]) => Buffer; export {};