export declare const INSTALL_HINT = "Everything is not running. Install it with `winget install voidtools.Everything` (or download from https://www.voidtools.com/), then launch it once. The MCP server will keep it running automatically afterwards."; export interface ProbeFns { GetMajorVersion: () => number; GetLastError: () => number; IsDBLoaded: () => number; } export interface EnsureOptions { autoStart?: boolean; startupTimeoutMs?: number; dbLoadTimeoutMs?: number; } export declare function ensureEverythingRunning(fns: ProbeFns, options?: EnsureOptions): Promise;