export interface TrackCommandOptions { cliVersion: string; command: string; dataDir?: string; env?: NodeJS.ProcessEnv; log?: (message: string) => void; } /** Fire-and-forget anonymous telemetry for an owox-ctl command invocation. Never throws. */ export declare function trackCommand(options: TrackCommandOptions): void;