/** * Callback representation for glob callback * @public */ export declare type globCallback = (err: Error | null, matches: string[]) => void; /** * Structure reprsenting glob options * @public */ export interface GlobOptions { dot?: boolean; ignore?: string[]; realPath?: boolean; } /** * Options for glob input * @public */ export declare const GLOB_OPTIONS: GlobOptions; //# sourceMappingURL=files.d.ts.map