import type { Command } from '../types/commands.js';
/**
 * The /context-max command sets the maximum context length for the current session.
 *
 * Note: The actual command logic is handled in app-util.ts handleContextMaxCommand()
 * because it requires access to app state that isn't available through the standard
 * command handler interface.
 *
 * Usage:
 * /context-max <number>   - Set context limit (supports k/K suffix, e.g. 128k)
 * /context-max             - Show current effective context limit
 * /context-max --reset     - Clear session override
 */
export declare const contextMaxCommand: Command;
//# sourceMappingURL=context-max.d.ts.map