import { StructureSchema } from '@ephox/boulder'; import type { Result } from '@ephox/katamari'; import { type FormComponentWithLabel, type FormComponentWithLabelSpec } from './FormComponent'; export interface SizeInputSpec extends FormComponentWithLabelSpec { type: 'sizeinput'; constrain?: boolean; enabled?: boolean; context?: string; } export interface SizeInput extends FormComponentWithLabel { type: 'sizeinput'; constrain: boolean; enabled: boolean; context: string; } export declare const sizeInputSchema: import("@ephox/boulder").StructureProcessor; export declare const sizeInputDataProcessor: import("@ephox/boulder").StructureProcessor; export declare const createSizeInput: (spec: SizeInputSpec) => Result>; //# sourceMappingURL=SizeInput.d.ts.map