import { FC, PropsWithChildren, HTMLAttributes } from 'react'; import { AlertStyledProps } from './styled'; export interface AlertProps extends AlertStyledProps, HTMLAttributes { live?: boolean; } export declare const Alert: FC>;