import { StatefulWidget, Widget, State } from "@meursyphus/flitter"; type XAxisProps = { ticks: Widget[]; labels: Widget[]; color: string; thickness: number; }; declare class XAxis extends StatefulWidget { ticks: Widget[]; labels: Widget[]; color: string; thickness: number; constructor({ color, thickness, labels, ticks }: XAxisProps); createState(): State; } declare const _default: (arr_0: XAxisProps) => XAxis; export default _default;