export interface Reader { list(): string[] | Promise; read(name: string): string | Promise; readAnyOf(filenames: string[]): string | Promise; }