import { CommandParser } from '../client/parser';
import { SimpleStringReply } from '../RESP/types';
/**
 * HOTKEYS RESET command - releases resources used for hotkey tracking
 *
 * State transitions:
 * - STOPPED -> EMPTY
 * - EMPTY -> EMPTY
 * - ACTIVE -> ERROR (must stop first)
 */
declare const _default: {
    readonly NOT_KEYED_COMMAND: true;
    readonly IS_READ_ONLY: false;
    /**
     * Releases resources used for hotkey tracking.
     * Returns error if a session is active (must be stopped first).
     * @param parser - The Redis command parser
     * @see https://redis.io/commands/hotkeys-reset/
     */
    readonly parseCommand: (this: void, parser: CommandParser) => void;
    readonly transformReply: () => SimpleStringReply<'OK'>;
};
export default _default;
//# sourceMappingURL=HOTKEYS_RESET.d.ts.map