import type { ExtractPropTypes, PropType, Component, CSSProperties } from 'vue'; import type _Statistic from './statistic.vue'; export declare const sdStatisticProps: { title: { type: StringConstructor; }; value: { type: PropType; }; valueStyle: { type: PropType; }; decimalSeparator: { type: StringConstructor; default: string; }; groupSeparator: { type: StringConstructor; default: string; }; precision: { type: NumberConstructor; }; prefix: { type: PropType>; }; suffix: { type: PropType>; }; }; export declare type SdStatisticProps = ExtractPropTypes; export declare type SdStatisticInstance = InstanceType;