import { ActionWithContext } from '../../../utils/hooks/useControllableReducer.types'; import { ListState, ListAction, ListActionContext } from '../useList'; import { ValueChangeAction } from './useTabsList.types'; export type TabsListActionContext = ListActionContext & { selectionFollowsFocus: boolean; }; export declare function tabsListReducer(state: ListState, action: ActionWithContext | ValueChangeAction, TabsListActionContext>): ListState;