/** * Resolve `pattern` to the set of concrete file paths it matches. * Literal paths (no glob chars) are returned as-is. * * @example * await expandGlob('src/**\/*.ts') // → ['src/a.ts', 'src/b/c.ts', ...] * await expandGlob('foo.txt') // → ['foo.txt'] */ export declare function expandGlob(pattern: string): Promise; //# sourceMappingURL=glob-expand.d.ts.map