/// import * as React from 'react'; import { StyledComponentClass } from '../../helpers'; export interface NoticeProps { children: React.ReactChild | React.ReactChild[]; className?: string; close?: boolean; onClose?: () => void; } export declare const Notice: StyledComponentClass; export declare const NoticeInfo: StyledComponentClass; export declare const NoticeWarning: StyledComponentClass; export declare const NoticeError: StyledComponentClass; export declare const NoticeSuccess: StyledComponentClass;