export type Padding = { top?: number; bottom?: number; left?: number; right?: number; vertical?: number; horizontal?: number; } | number; export type ChartOptions = { locale?: Intl.LocalesArgument; showAxis?: boolean; svgPadding?: Padding; hugContainer?: boolean; }; type TableColumn = unknown[] | { data: unknown[]; } | { fetch: () => Promise; }; export declare function Chart({ x, y, sizes, type, svgClassName, width: argWidth, height, options, }: { x: TableColumn; y: TableColumn; sizes?: number[]; type: "line" | "bar" | "bubble"; svgClassName?: string; width?: number; height?: number; options?: ChartOptions; }): any; export {};