import { type ComponentType } from "react"; import { type ITheme } from "@gooddata/sdk-model"; import { type ChartType } from "@gooddata/sdk-ui"; import { type ICoreChartProps, type OnLegendReady } from "../../interfaces/chartProps.js"; /** * NOTE: exported to satisfy sdk-ui-ext; is internal, must not be used outside of SDK; will disappear. * * @internal */ export interface IBaseChartProps extends ICoreChartProps { type: ChartType; onLegendReady?: OnLegendReady; theme?: ITheme; } /** * NOTE: exported to satisfy sdk-ui-ext; is internal, must not be used outside SDK; will disappear. * * @internal */ export declare const BaseChart: ComponentType; //# sourceMappingURL=BaseChart.d.ts.map