import { type FieldProcessor } from '@ephox/boulder'; import type { Optional } from '@ephox/katamari'; import type { BodyComponent, BodyComponentSpec } from './BodyComponent'; type Alignment = 'start' | 'center' | 'end'; export interface LabelSpec { type: 'label'; label: string; items: BodyComponentSpec[]; align?: Alignment; for?: string; } export interface Label { type: 'label'; label: string; items: BodyComponent[]; align: Alignment; for: Optional; } export declare const createLabelFields: (itemsField: FieldProcessor) => FieldProcessor[]; export {}; //# sourceMappingURL=Label.d.ts.map