import type { CommandContext } from './context.js'; interface FallbackOptions { json: boolean; } export declare function handleFallback(ctx: CommandContext, mode: 'on' | 'off' | 'status', opts?: FallbackOptions): void; export declare function handleFallbackAuto(ctx: CommandContext, mode: 'on' | 'off' | 'status', threshold: number | undefined): void; export declare function handleFallbackAutoEngage(ctx: CommandContext, mode: 'on' | 'off' | 'status', threshold: number | undefined): void; export {};