/**
 * Cross-platform check if a path is inside .omo/ directory.
 * Handles both forward slashes (Unix) and backslashes (Windows).
 * Uses path segment matching instead of substring matching.
 */
export declare function isOmoPath(filePath: string): boolean;
