import type { ExtractPropTypes, StyleValue } from 'vue'; import type { Dayjs } from 'dayjs'; import type Statistic from './statistic.vue'; export declare const statisticProps: { readonly decimalSeparator: import("element-plus/es/utils").EpPropFinalized; readonly groupSeparator: import("element-plus/es/utils").EpPropFinalized; readonly precision: import("element-plus/es/utils").EpPropFinalized; readonly formatter: FunctionConstructor; readonly value: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => number | Dayjs) | (() => number | Dayjs) | ((new (...args: any[]) => number | Dayjs) | (() => number | Dayjs))[], unknown, unknown, 0, boolean>; readonly prefix: StringConstructor; readonly suffix: StringConstructor; readonly title: StringConstructor; readonly valueStyle: { readonly type: import("vue").PropType string | import("vue").CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type StatisticProps = ExtractPropTypes; export type StatisticInstance = InstanceType & unknown;