import React from 'react'; import { Variant } from './types'; import SafeAnchor from './SafeAnchor'; import { TransitionType } from './helpers'; export interface AlertProps extends React.HTMLProps { bsPrefix?: string; variant?: Variant; dismissible?: boolean; show?: boolean; onClose?: (a: any, b: any) => void; closeLabel?: string; transition?: TransitionType; } declare const AlertHeading: import("./helpers").BsPrefixRefForwardingComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & React.RefAttributes>, unknown>; declare const AlertLink: import("./helpers").BsPrefixRefForwardingComponent; declare type Alert = React.ForwardRefExoticComponent & { Link: typeof AlertLink; Heading: typeof AlertHeading; }; declare const Alert: Alert; export default Alert;