/** * Charts Example – vanilla port of React ChartsExample. * Uses same data, headers and props as main branch. */ import type { Row } from "../../src/index"; import { type UniversalVanillaArgs } from "../vanillaStoryConfig"; export declare const chartsExampleDefaults: { columnReordering: boolean; columnResizing: boolean; selectableCells: boolean; }; export declare const CHARTS_EXAMPLE_DATA: Row[]; export declare function renderChartsExample(args?: Partial): HTMLElement;