import { type FieldProcessor } from '@ephox/boulder'; import type { BodyComponent, BodyComponentSpec } from './BodyComponent'; export interface GridSpec { type: 'grid'; columns: number; items: BodyComponentSpec[]; } export interface Grid { type: 'grid'; columns: number; items: BodyComponent[]; } export declare const createGridFields: (itemsField: FieldProcessor) => FieldProcessor[]; //# sourceMappingURL=Grid.d.ts.map