/// <reference types="react" />
import { NoticeBarProps } from "./notice-bar";
import { NoticeBarAction } from "./notice-bar-action";
import { NoticeBarIcon } from "./notice-bar-icon";
interface NoticeBarInterface {
    (props: NoticeBarProps): JSX.Element;
    Icon: typeof NoticeBarIcon;
    Action: typeof NoticeBarAction;
}
declare const NoticeBar: NoticeBarInterface;
export default NoticeBar;
