import type { ToolDefinition } from "@opencode-ai/plugin"; import type { GlobArgs, GlobOutput } from "./types"; export type GlobScanner = (pattern: string, cwd: string) => Promise; export declare function executeGlob(args: GlobArgs, context: { directory: string; }, scanner?: GlobScanner): Promise; export declare function createGlobTool(scanner?: GlobScanner): ToolDefinition;