import type { Updater } from './core'; export declare function createGridState(initialValue: TState): [() => TState, (updater: Updater) => void]; export declare const createSvGridState: typeof createGridState;