import { type PopoverOrigin } from "@mui/material/Popover"; import { type TypographyProps } from "@mui/material/Typography"; import type { ElementType, ReactNode } from "react"; export type IndicatorWithExplanationProps = { id: string; icon: ElementType; color: TypographyProps["color"]; title?: ReactNode; name: ReactNode; label?: ReactNode; explanation: ReactNode; literalValue?: string; anchorOrigin?: PopoverOrigin; transformOrigin?: PopoverOrigin; }; export declare const IndicatorWithExplanation: (({ id, icon, color, title, name, label, explanation, literalValue, anchorOrigin, transformOrigin, }: IndicatorWithExplanationProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default IndicatorWithExplanation;