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