import { type IconContainerProps as MuiIconContainerProps } from '@mui/material'; import { type ReactNode } from 'react'; type Props = MuiIconContainerProps & { isVisibleHints?: boolean; icon?: ReactNode; hint: string; }; export declare const IconContainer: ({ isVisibleHints, icon, children, hint, className, }: Props) => JSX.Element; export {};