import { ListContextValue } from '../List/List.types';
/**
 * Returns the intended tabIndex for the ListItemBase
 */
export declare const getListItemBaseTabIndex: ({ interactive, listContext, focus, }: {
    interactive: boolean;
    listContext?: ListContextValue;
    focus: boolean;
}) => number;
