import { Widget, type BuildContext } from "@meursyphus/flitter"; import CartesianChartContextWidget from "../CartesianChartContextWidget"; export type XAxisLabelProps = { index: number; text: string; }; export declare class XAxisLabel extends CartesianChartContextWidget { private props; constructor(props: XAxisLabelProps); build(context: BuildContext): Widget; } declare const _default: (props: XAxisLabelProps) => XAxisLabel; export default _default;