import { JSX } from 'react'; import { AlertProps } from './Alert.interface'; declare const Alert: { ({ ref: propRef, children, icon, status, dataTheme, className, ...props }: AlertProps): JSX.Element; displayName: string; }; export default Alert;