import type { Command } from "commander"; /** * Remove the `statusLine` entry from a settings object only when it carries * our bridge marker. Returns true when removed, false otherwise (foreign * statusLines are left alone). Mutates `settings`. */ export declare function removeOurStatusline(settings: Record): boolean; export declare function registerUninstallStatuslineCommand(program: Command): void;