import { CubeStats } from '../types'; interface CubeListItemProps { name: string; title?: string; description?: string; isMissing?: boolean; isPrivate?: boolean; isDisabled?: boolean; isSelected?: boolean; rightIcon?: 'arrow' | 'plus' | null; type?: 'cube' | 'view'; stats?: Partial; onItemSelect?: () => void; } export declare function ListCube({ name, title, description, type, stats, rightIcon, isMissing, isDisabled, isPrivate, isSelected, onItemSelect, }: CubeListItemProps): import("react/jsx-runtime").JSX.Element; export {};