import { ChartData, ChartOptions, ChartType, DefaultDataPoint, Plugin, UpdateMode } from 'chart.js'; export type { ChartData as MazChartData, DefaultDataPoint as MazChartDefaultDataPoint, Plugin as MazChartPlugin, ChartType as MazChartType, UpdateMode as MazChartUpdateMode } from 'chart.js'; export interface MazChartProps, TLabel = unknown> { /** * Type of the chart * @type ChartType * @values 'bar', 'line', 'scatter', 'bubble', 'pie', 'doughnut', 'polarArea', 'radar' * @required */ type: T; /** * Data of the chart * @type ChartData * @required */ data: ChartData; /** * Options of the chart * @type ChartOptions * @default {} */ options?: ChartOptions; /** * Plugins of the chart * @type Plugin[] */ plugins?: Plugin[]; /** * Dataset ID key * @type string */ datasetIdKey?: string; /** * Update mode * @type UpdateMode * @values 'resize', 'reset', 'none', 'hide', 'show', 'default', 'active' * @default 'default' */ updateMode?: UpdateMode; } declare const _default: , TLabel = unknown>(__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & MazChartProps & Partial<{}>> & import('vue').PublicProps; expose(exposed: import('vue').ShallowUnwrapRef<{}>): void; attrs: any; slots: {}; emit: {}; }>) => import('vue').VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};