export interface IFileReader { read(path: string): Promise; } export declare class FileReader implements IFileReader { read(path: string): Promise; }