import { NoticeBarProps as NutNoticeBarProps } from '@nutui/nutui-react-taro'; import { FC } from 'react'; type NoticeBarType = 'primary' | 'warning' | 'danger' | 'success'; interface NoticeBarProps extends NutNoticeBarProps { /** * 公告栏类型 * @default primary */ type: NoticeBarType } export declare const NoticeBar: FC>; export type { NoticeBarProps, NoticeBarType };