import type { Optional } from '@ephox/katamari'; export interface FormComponentSpec { type: string; name: string; } export interface FormComponent { type: string; name: string; } export interface FormComponentWithLabelSpec extends FormComponentSpec { label?: string; } export interface FormComponentWithLabel extends FormComponent { label: Optional; } export declare const formComponentFields: import("@ephox/boulder").FieldProcessor[]; export declare const formComponentWithLabelFields: import("@ephox/boulder").FieldProcessor[]; //# sourceMappingURL=FormComponent.d.ts.map