import { z } from "zod"; export declare const globArgsSchema: { pattern: z.ZodString; path: z.ZodOptional; }; export type GlobArgs = z.infer>; export type GlobOutput = string;