import { BoxProps, SvgIconProps, TypographyProps } from '@mui/material'; import React, { ComponentType, ElementType } from 'react'; export interface FormMessageProps extends BoxProps { /** * Defines which variant of Banner component should be rendered * @default error */ variant?: 'info' | 'warning' | 'error'; /** * Properties passed to indicator icon */ iconProps?: SvgIconProps; /** * Icon node to be used */ IconComponent?: ComponentType; /** * Properties passed to wrapper of children */ typographyProps?: TypographyProps; } /** * Message indicating form error or additional info. * Intended to be used in combination with */ export declare const FormMessage: React.FC;