import Gitignore from 'gitignore-fs'; import { Minimatch } from 'minimatch'; import { Fs } from './glob'; export declare type AstxGlobOptions = { include?: string; exclude?: string; includeMatcher?: Minimatch; excludeMatcher?: Minimatch; gitignore?: Gitignore | null; cwd?: string; fs?: Fs; visited?: Set; nodir?: boolean; dot?: boolean; }; export default function astxGlob(options: AstxGlobOptions): AsyncIterable;