export default interface IFS { exists: (filepath?: string) => Promise; readFile: (filepath: string) => Promise; resolve: (root: string, file: string, ext: string) => string; }