import type { GridRowId } from '../types'; import type { ApiSection } from './types'; export type GridEditApi = { start: (location: { columnId: string; rowId: GridRowId; }) => void; stop: () => void; next: () => void; previous: () => void; }; export declare const createEditApi: ApiSection; //# sourceMappingURL=edit.d.ts.map