/// export interface TypeDataVDecoration { children?: React.ReactChild; /** 自定义颜色, 属性支持配置两个颜色,一主一副。 */ color: string[]; decorationType?: '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11'; /** 部分无效,单次动画时长,默认值3 */ dur?: number; /** 翻转 */ reverse?: boolean; style?: React.CSSProperties; } declare const DataVDecoration: (props: TypeDataVDecoration) => import("react").JSX.Element; export default DataVDecoration;