import type { HookUIContext } from "./hooks/types"; /** * Resolve a file path: * - Absolute paths used as-is * - Paths starting with ~ expanded to home directory * - Relative paths resolved from cwd */ export declare function resolvePath(filePath: string, cwd: string): string; /** * Create a no-op UI context for headless modes. */ export declare function createNoOpUIContext(): HookUIContext;