import React from 'react';
export interface NoticeBarProps {
    children?: React.ReactNode;
    action?: React.ReactNode;
    icon?: React.ReactElement;
}
export default class NoticeBar extends React.Component<NoticeBarProps> {
    render(): JSX.Element;
}
