import { Stats } from 'fs'; import { IOptions } from './types/glob'; export type CrawledFileType = { type: 'file' | 'directory' | 'link'; stat: Pick; transformed?: { path: string; stat: Stats; }; }; export declare function determineFileType(filename: string): Promise; export declare function crawl(dir: string, options: IOptions): Promise]>;