import React, { ReactNode } from 'react'; import { IconType } from '../Icon'; import { ContentNode } from '../../types'; declare const iconTypeMap: { caution: string; danger: string; info: string; }; export interface NoticeProps extends Omit, 'title'> { type?: keyof typeof iconTypeMap; title: ContentNode; icon?: IconType; variant?: 'default' | 'condensed'; children?: ReactNode; } declare const Notice: React.ForwardRefExoticComponent>; export default Notice;