/**
* cleanUpPEM removes unwanted characters from PEM encoded msgs.
* For example, '\r' is commonly found in text version of PEM encoded keys.
*/declarefunctioncleanUpPEM(pemMsg: string): string;
declarefunctiongetHexKey(pemKey: string): string;
export { cleanUpPEM, getHexKey, };