import type { RowData, SvGrid, SvGridOptions, TableFeatures } from './core'; export type SvelteGrid = SvGrid & { readonly state: Readonly; }; export declare function createSvGrid(gridOptions: SvGridOptions, selector?: (state: Record) => TSelected): SvelteGrid; export declare const createGrid: typeof createSvGrid;