import type { HostName } from "../../types.js"; export interface DetectedHost { name: HostName; displayName: string; /** Process name(s) we matched against. */ matched: string[]; } /** * Auto-detect what NLE is currently running. Returns the first match. * If nothing is running, returns "none". * * Note: Resolve's process name is "resolve" lowercase on Linux which collides * with all sorts of unrelated stuff; we restrict that match to look for the * full app bundle path on macOS first, then fall back. */ export declare function detectHost(): DetectedHost; //# sourceMappingURL=detect.d.ts.map