export declare namespace EncryptDecryptPDF { class PDFProcessor { password: String; username: String; constructor(password: String, username: String); decrypt(orgfilepath: string, newfilepath: string): Promise; encrypt(orgfilepath: string, newfilepath: string): Promise; private process; } }