type PatternInput = string | readonly string[]; export interface NativeGlobbyOptions { cwd?: string; absolute?: boolean; onlyFiles?: boolean; ignore?: readonly string[]; } type GlobbyLike = { (patterns: PatternInput, options?: NativeGlobbyOptions): Promise; sync(patterns: PatternInput, options?: NativeGlobbyOptions): string[]; }; export declare const nativeGlobby: GlobbyLike; export {}; //# sourceMappingURL=nativeGlobby.d.ts.map