/// import type { RowProps, ColProps, ProgressProps } from 'antd'; import type { TypeDataVStatisticProps } from '../statistic'; export type targets = ColProps & TypeDataVStatisticProps; export interface TypeDataVTargetBlockProps { align?: 'top' | 'middle' | 'bottom'; /** 图标 */ icon?: React.ReactNode; topTarget: TypeDataVStatisticProps; progress: ProgressProps; bottomTarget: TypeDataVStatisticProps; otherTarget?: { row: RowProps; targets: targets[]; }; } declare const DataVTargetBlock: (props: TypeDataVTargetBlockProps) => import("react").JSX.Element; export default DataVTargetBlock;