/// import type { ExtendElementProps } from "../utils/extendElementProp"; export declare type InfoBarProps = ExtendElementProps<"div", { className?: string; closable?: boolean; activatable?: boolean; info?: boolean; success?: boolean; warning?: boolean; danger?: boolean; close?: boolean; onClose?: () => void; }>; export declare function InfoBar({ className, children, closable, activatable: activatableValue, info, success, warning, danger, close: closeValue, onClose, ...rest }: InfoBarProps): JSX.Element;