import { IconProps } from '@iconify/react';
import { StackProps, TypographyProps } from '@mui/material';
export interface IconModel {
    name: string;
    color?: string;
    restProps?: IconProps;
}
export interface TextDatePropsModel {
    date?: string | null | Date;
    format?: string;
    icon?: IconModel;
    textProps?: TypographyProps;
    stackProps?: StackProps;
}
