import React from 'react'; import type { StyledProps } from '../common'; import type { TdNoticeBarProps } from './type'; export interface NoticeBarProps extends TdNoticeBarProps, StyledProps { touchable?: boolean; } declare const NoticeBar: React.FC; export default NoticeBar;