/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * @hidden
 */
export declare enum FOCUS_ACTION {
    next = "next",
    prev = "prev",
    current = "current",
    reset = "reset"
}
/**
 * @hidden
 */
export type FocusAction = {
    type: FOCUS_ACTION;
    payload: string;
    items: string[];
    target?: any;
    event?: any;
    state?: any;
};
/**
 * @hidden
 */
export declare const focusReducer: (state: any, action: FocusAction) => any;
