/// import { Theme } from '@mui/material/styles'; import { SxProps } from '@mui/system'; interface Props { error?: boolean; sx?: SxProps; } declare const WarningIcon: ({ error, sx }: Props) => JSX.Element; export default WarningIcon;