import FSProvider from '../fs-provider'; export default function walkAsync(baseDir: string, inputOptions?: Options | string[]): Promise; export declare function entries(baseDir: string, inputOptions?: Options | string[]): Promise; export interface Options { includeBasePath?: boolean; globs?: string[]; ignore?: string[]; directories?: boolean; fs: FSProvider; } export declare class Entry { relativePath: string; basePath: string; _isDirectory: boolean; constructor(relativePath: string, basePath: string, isDirectory: boolean); get fullPath(): string; isDirectory(): boolean; }