import { type GridDensity } from '../../../utils/layoutGrid.js'; interface DashboardGridToolbarProps { cols?: number; rowHeight?: number; gap?: number; compact?: boolean; editable?: boolean; showGrid?: boolean; density?: GridDensity | 'custom'; colOptions?: number[]; class?: string; onreset?: () => void; oncompact?: () => void; onchange?: (next: { cols: number; rowHeight: number; gap: number; compact: boolean; editable: boolean; showGrid: boolean; density: GridDensity | 'custom'; }) => void; } declare const DashboardGridToolbar: import("svelte").Component; type DashboardGridToolbar = ReturnType; export default DashboardGridToolbar;