import * as React from 'react'; import { PropsWithChildren } from 'react'; export declare type AlertType = 'success' | 'info' | 'warning' | 'danger'; declare type IAlertProps = { type: AlertType; spacing?: 'sm'; dismissible?: boolean; }; export declare const Alert: React.FC & React.HTMLProps>; export {};