/** * Construct a path within the project's .omp directory. * @param cwd - The current working directory (project root) * @param segments - Additional path segments to join * @returns Absolute path to .omp/ */ export declare function ompPath(cwd: string, ...segments: string[]): string; /** * Construct a path within the project's .omp/state directory. * @param cwd - The current working directory (project root) * @param segments - Additional path segments to join * @returns Absolute path to .omp/state/ */ export declare function statePath(cwd: string, ...segments: string[]): string;