import React from 'react'; import { CSS } from "../config"; import { StyledAlertVariants } from "./alert-styled"; interface Props extends StyledAlertVariants { children?: React.ReactNode; iconRight?: React.ReactNode; iconLeft?: React.ReactNode; css?: CSS; as?: keyof JSX.IntrinsicElements; iconMini?: boolean; widthIcon?: string; heightIcon?: string; open?: boolean; onClose?: () => void; removeIconClose?: boolean; } declare type NativeAttrs = Omit, keyof Props>; export declare type AlertContainerProps = Props & NativeAttrs; declare const AlertContainer: React.ForwardRefExoticComponent>; export default AlertContainer;