/** @jsx jsx */ import { ReactNode, CSSProperties } from 'react'; import { Kind } from '../types'; export interface IAlertProps { children: ReactNode; kind?: Kind; className?: string; style?: CSSProperties; onDismiss?: () => void; } export declare function Alert(props: IAlertProps): JSX.Element;