import type { Tool } from '@wrongstack/core/types'; export interface GlobInput { pattern: string; path?: string | undefined; limit?: number | undefined; } export interface GlobOutput { files: string[]; truncated: boolean; } export declare const globTool: Tool; //# sourceMappingURL=glob.d.ts.map