import { Alignment, Widget, BuildContext } from "@meursyphus/flitter"; import { Scale, Data, Theme, Custom, Dependencies } from "../types"; import ChartContextWidget from "../../../common/ChartContextWidget"; export type ChartConfig = { scale?: Scale; alignment?: Alignment; foregroundAdditions?: Widget[]; backgroundAdditions?: Widget[]; }; export declare class Chart extends ChartContextWidget { build(context: BuildContext): Widget; getXAnxYLabels({ scale }: { scale: Scale; }): { xLabels: string[]; yLabels: string[]; }; private getLabels; } declare const _default: () => Chart; export default _default;