import { TypographyProps } from '@mui/material'; import { SxProps, Theme } from '@mui/material/styles'; import { ReactNode } from 'react'; import { Property } from 'csstype'; export type LegendRowProps = { index: number; label: string; details?: ReactNode; colors: Property.Color[]; icons: ReactNode[]; values: number[]; hovered: boolean; onMouseEnter?: (e: React.MouseEvent) => void; onMouseLeave?: () => void; onClick?: () => void; children?: ReactNode; labelVariant?: TypographyProps["variant"]; labelSx?: SxProps; containerSx?: SxProps; showMarker?: boolean; }; export declare const LegendRow: (props: LegendRowProps) => import("react/jsx-runtime").JSX.Element;