import { type HTMLAttributes } from "react"; export interface ListItemBaseProps extends HTMLAttributes { disabled?: boolean; deselectable?: boolean; focusVisible?: boolean; highlighted?: boolean; itemTextHighlightPattern?: RegExp | string; selected?: boolean; tooltipText?: string; } export declare const ListItemBase: import("react").MemoExoticComponent>>;