/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { GridColumnNumber, GridColumnNumbers } from './Grid';
import type { GridCellProps } from './GridCell';
export declare const addGridClass: (prefix: string, value?: GridColumnNumber | GridColumnNumbers | "all") => string[];
export declare const gridCellClasses: (colSpan?: GridCellProps["span"], colStart?: GridCellProps["start"], rowSpan?: GridCellProps["rowSpan"]) => string[];
