declare class File { readonly filepath: string; readonly data: string; constructor(filepath: string, data: string); } export default File;