import type { ExtractPropTypes, PropType, VNodeChild } from 'vue'; export interface TableStatisticsColumn { label: VNodeChild; prop: string; format?: (value: any) => any; } export declare const tableStatisticsProps: { columns: { type: PropType; default: () => never[]; }; data: { type: PropType>; default: () => {}; }; }; export type TableStatisticsProps = ExtractPropTypes;