export interface IGlobOptions { nodir?: boolean; dot?: boolean; ignore?: string; } export declare function find(pattern: string, options?: IGlobOptions): Promise; export declare type IGlobMatchOptions = { debug?: boolean; }; export declare function isMatch(pattern: string, path: string, options?: IGlobMatchOptions): boolean; export declare function matcher(pattern: string, options?: IGlobMatchOptions): (path: string, options?: IGlobMatchOptions) => boolean;