import { type IntlShape } from "react-intl"; import { type DashboardAccessibilityLimitation } from "./types.js"; export interface IDashboardsListItemProps { title: string; accessibilityLimitation?: DashboardAccessibilityLimitation; onClick: () => void; isSelected?: boolean; } export declare const getTooltip: (intl: IntlShape, accessibilityLimitation?: DashboardAccessibilityLimitation | undefined) => string | undefined; export declare function DashboardListItem(props: IDashboardsListItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DashboardListItem.d.ts.map