import React, { type ReactNode } from 'react'; import { type TooltipProps } from '../Tooltip'; import { type PopperProps } from '../Popper'; import './Infotip.types'; type AdjustedTooltipProps = Omit; export interface InfotipProps extends AdjustedTooltipProps { color?: 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'; content: ReactNode; slotProps?: { popper?: Partial; }; } declare const slots: { root: { slot: "root"; name: "MuiInfotip"; }; popper: { slot: "popper"; name: "MuiInfotip"; }; }; export type InfotipSlots = keyof typeof slots; declare const Infotip: React.FC; export default Infotip;