import React, { ReactNode } from "react"; import { Property } from "csstype"; import { XHComponentCommonProps } from "../../types"; export declare type RemindProps = { content: string[] | ReactNode[]; internal?: number; duration?: number; icon?: ReactNode | boolean; itemHeight?: number; bgColor?: Property.BackgroundColor; } & XHComponentCommonProps; declare const Notice: React.FC; export default Notice;