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