/// export declare enum FeedbackType { success = "success", info = "info", warning = "warning", danger = "danger" } export interface IFeedbackProps { /** * Additional class names to add to the control for custom styling. */ className?: string; /** * The type of box to render. * @default FeedbackType.success */ type?: FeedbackType; /** * An optional title attribute for the close button. Is not displayed unless onClose is defined. * @default Close */ closeTitle?: string; /** * If specified a close button is rendered that will call this function when clicked. */ onClose?: (e?: React.MouseEvent) => void; }