/// export interface TypeDataVBorderBox { children?: React.ReactChild; /** 自定义颜色 */ color?: string[]; /** 背景色 */ backgroundColor: string; borderType?: '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13'; /** 8 才有,单次动画时长,默认值3 */ dur?: number; /** 4、5、8 专有 */ reverse?: boolean; /** 11 才有 */ /** 标题 */ title?: string; /** 标题宽度,默认值250 */ titleWidth?: number; } declare const DataVBorderBox: (props: TypeDataVBorderBox) => import("react").JSX.Element; export default DataVBorderBox;