declare class Certificate {
    #private;
    parseCertificate(certificateData: string): Promise<this>;
    validatePrivatePassword(password: string): boolean;
    getPrivateKey(): string;
}
export default Certificate;
