import { type GridOptions } from './grid-types.js'; /** * Default grid options * Created as a function to avoid mutating the same object */ export declare const DEFAULT_GRID_OPTIONS: (overrides?: GridOptions) => GridOptions; /** Grid options type row-layout */ export declare const ROW_LAYOUT_OPTIONS: (overrides?: GridOptions) => GridOptions; export type GridLayoutType = 'row-layout' | 'default'; /** Grid options init function */ export declare const gridOptionsInit: (options: GridOptions, layoutType: GridLayoutType) => GridOptions | undefined;