import type { Optional } from '@ephox/katamari'; import { type FormComponent, type FormComponentSpec } from './FormComponent'; export interface ImagePreviewSpec extends FormComponentSpec { type: 'imagepreview'; height?: string; } export interface ImagePreview extends FormComponent { type: 'imagepreview'; height: Optional; } export interface ImagePreviewData { url: string; zoom?: number; cachedHeight?: number; cachedWidth?: number; } export declare const imagePreviewSchema: import("@ephox/boulder").StructureProcessor; export declare const imagePreviewDataProcessor: import("@ephox/boulder").StructureProcessor; //# sourceMappingURL=ImagePreview.d.ts.map