import { BuildContext, ComponentWidget, Widget } from "@meursyphus/flitter"; import { DeepPartial } from "../utils"; declare class ChartContextRootWidget extends ComponentWidget { custom: CUSTOM; data: DATA; theme: THEME; scaleConfig?: DeepPartial; get dependencies(): DEPENDENCIES; get root(): Widget; constructor({ custom, theme, data, scale, }: { custom?: Partial; theme?: DeepPartial; data: DATA; scale?: DeepPartial; }); get scale(): SCALE; mergeWithDefaultTheme(theme: DeepPartial): THEME; mergeWithDefaultCustom(custom: Partial): CUSTOM; build(context: BuildContext): Widget; } export default ChartContextRootWidget;