/// import { MmuiCommonComponent, MmuiProps, MmuiState } from './common'; export interface MmuiChartVegaProps extends MmuiProps { chartId: string; chartSpec: any; chartEmbedOpts: any; payload?: any; reportIssueUrl?: string; } export declare class MmuiChartVegaComponent

extends MmuiCommonComponent { getChartSpec(fromStore?: boolean): P["chartSpec"]; getChartEmbedOpts(fromStore?: boolean): P["chartEmbedOpts"]; buildChart(dataArray: any): void; extractDataArray(payload: any): any[]; getComponentMode(payload: any): string; componentDidMount(): void; componentDidUpdate(): void; render(): JSX.Element; }