import type { GridRowId } from '../types'; import type { ApiSection } from './types'; export type GridContentApi = { isEditable: (location: { columnId: string; rowId: GridRowId; }) => boolean; getValue: (location: { columnId: string; rowId: GridRowId; }) => any; getLabel: (location: { columnId: string; rowId: GridRowId; }) => string; getColumnLabel: (columnId: string) => string; }; export declare const createContentApi: ApiSection; //# sourceMappingURL=content.d.ts.map