import React from 'react'; import { Dictionary } from '../base'; import { DataSource } from '../data'; import { ReactControl } from './base'; import { View } from './mvc'; export declare class DataPanel extends View { dataSources?: Dictionary; children?: ReactControl; currentPage?: string; themeName?: string; extendTheme?: any; onClick?: () => void; /** 双击事件 */ onDoubleClick?: () => void; onRenderOuter?: ((children: React.ReactNode) => JSX.Element) | undefined; createView?: ((children: ReactControl) => JSX.Element) | undefined; } /** * 报表卡片 */ export declare const DataPanelControl: any;