import * as glob from "glob";
export { IOptions as IGlobOptions } from "glob";
export declare const globAsync: (pattern: string, options?: glob.IOptions) => Promise<readonly string[]>;
export declare const globAllAsync: (patterns: readonly string[], options?: glob.IOptions) => Promise<readonly string[]>;
export declare type IGlobAsync = typeof globAsync;
export declare type IGlobAllAsync = typeof globAllAsync;
