/// declare class PDFFile { name: String; url: String; constructor(data: Object); download(): Promise; save(path: String): Promise; } export default PDFFile;