import type { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react'; import type { FlowbiteColors } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteAlertTheme { base: string; borderAccent: string; wrapper: string; closeButton: { base: string; icon: string; color: AlertColors; }; color: AlertColors; icon: string; rounded: string; } export interface AlertColors extends Pick { [key: string]: string; } export interface AlertProps extends PropsWithChildren, 'color'>> { additionalContent?: ReactNode; color?: keyof AlertColors; icon?: FC>; onDismiss?: boolean | (() => void); rounded?: boolean; withBorderAccent?: boolean; } export declare const Alert: FC;