import type { FieldProcessor } from '@ephox/boulder'; import type { BodyComponent, BodyComponentSpec } from './BodyComponent'; export interface BarSpec { type: 'bar'; items: BodyComponentSpec[]; } export interface Bar { type: 'bar'; items: BodyComponent[]; } export declare const createBarFields: (itemsField: FieldProcessor) => FieldProcessor[]; //# sourceMappingURL=Bar.d.ts.map