import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type CSSProperties, type ReactNode } from "react"; import type { NoticeBarInterface } from "./notice-bar.shared"; export interface NoticeBarProps extends ViewProps { className?: string; style?: CSSProperties; delay?: number; speed?: number; scrollable?: boolean; wordwrap?: boolean; children?: ReactNode; onReplay?(): void; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;