export declare const OPTION_LIST: readonly []; /** * Removes the signageOS CLI auto-completion functionality from the user's shell configuration. * This command reverses the changes made by the install command, removing auto-completion * scripts and configuration entries from shell profile files. * * @group Tools:12 * * @example * ```bash * # Uninstall auto-completion * sos autocomplete uninstall * ``` * * @see {@link ../install/ Install auto-completion command} * * @since 2.4.0 */ export declare const uninstallAutocomplete: { name: "uninstall"; description: string; optionList: readonly []; commands: never[]; run(): Promise; };