import * as React from 'react'; import type { NotificationProps as RcNotificationProps } from '@rc-component/notification'; import type { MessageSemanticAllType, NoticeType } from './interface'; export declare const TypeIcon: { info: React.JSX.Element; success: React.JSX.Element; error: React.JSX.Element; warning: React.JSX.Element; loading: React.JSX.Element; }; export declare const getMessageIcon: (type?: NoticeType, icon?: React.ReactNode) => string | number | bigint | true | Iterable | Promise> | Iterable | null | undefined> | React.JSX.Element | null; export interface MessageContentProps { type?: NoticeType; icon?: React.ReactNode; } export interface PurePanelProps extends Omit, MessageContentProps { prefixCls?: string; content?: React.ReactNode; classNames?: MessageSemanticAllType['classNamesAndFn']; styles?: MessageSemanticAllType['stylesAndFn']; } /** @private Internal Component. Do not use in your production. */ declare const PurePanel: React.FC; export default PurePanel;