/// <reference types="react" />
export interface RollingNoticeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
    list?: Array<React.ReactNode>;
    height?: string | number;
    fontSize?: string | number;
    duration?: number;
    bubbleDuration?: number;
}
export declare function RollingNotice(props: RollingNoticeProps): JSX.Element;
