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