import { ICommand, OptionList } from '../../commandDefinition'; export declare const OPTION_LIST: readonly []; export declare const setRootCommand: (rootCommand: ICommand) => void; /** * Enables auto-completion functionality for the signageOS CLI in supported shells. * This command adds auto-completion scripts and configuration to the user's shell * profile, allowing tab completion for commands and sub-commands. * * @group Tools:11 * * @example * ```bash * # Install auto-completion * sos autocomplete install * ``` * * @see {@link ../uninstall/ Uninstall auto-completion command} * * @since 2.4.0 */ export declare const installAutocomplete: { name: "install"; description: string; optionList: readonly []; commands: never[]; run(): Promise; };