/** Splits a glob entry path into the directory to scan and the pattern to match. */ export declare function splitGlobPattern(entryPath: string): { scanRoot: string; pattern: string; }; export declare function expandGlobEntryPaths(entryPaths: string[]): Promise; export declare function formatValue(value: unknown): string; /** Recursively records changed paths between two checkpoint-like values. */ export declare function collectDiffLines(beforeValue: unknown, afterValue: unknown, path: string, lines: string[]): void;