import { IconButtonProps, StackProps, TooltipProps, TypographyProps } from '@mui/material';
import { ReactNode } from 'react';
import { Omit } from '../../types';
export interface IconTextModel {
    nameIcon?: string;
    colorIcon?: string;
    text?: string;
    typographyProps?: TypographyProps;
    titleTooltip?: NonNullable<ReactNode>;
    tooltipPros?: Omit<TooltipProps, 'title'>;
    isOpenTooltip?: boolean;
    iconButtonProps?: IconButtonProps;
    containerProps?: StackProps;
}
