import { SvgIconProps } from '@mui/material'; declare const statusIconColor: readonly ["warning", "info", "success", "error", "primary", "secondary"]; type StatusIconColor = (typeof statusIconColor)[number]; export interface StatusIconProps extends Omit { /** * The color of the icon. * @default "grey.A700" */ color?: StatusIconColor | string; /** * The fontSize applied to the icon. Defaults to 16px (xSmall), but can be configured to inherit font size. * @default 'medium' */ fontSize?: "inherit" | "small" | "medium" | "large"; /** * The variant to use. * @default "filled" */ variant?: "filled" | "outlined"; } declare const _default: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default _default;