import Entry from './Entry';
import EntryFilter from './EntryFilter';
import { Directory, File } from './FSTypings';
declare type Constructor<T> = new (path: string) => T;
declare const File: Constructor<File>;
declare const Directory: Constructor<Directory>;
export { Entry, File, Directory, EntryFilter };
