import { StructureSchema } from '@ephox/boulder'; import type { Result } from '@ephox/katamari'; import { type FormComponentWithLabel, type FormComponentWithLabelSpec } from './FormComponent'; export interface IframeSpec extends FormComponentWithLabelSpec { type: 'iframe'; border?: boolean; sandboxed?: boolean; streamContent?: boolean; transparent?: boolean; } export interface Iframe extends FormComponentWithLabel { type: 'iframe'; border: boolean; sandboxed: boolean; streamContent: boolean; transparent: boolean; } export declare const iframeSchema: import("@ephox/boulder").StructureProcessor; export declare const iframeDataProcessor: import("@ephox/boulder").StructureProcessor; export declare const createIframe: (spec: IframeSpec) => Result>; //# sourceMappingURL=Iframe.d.ts.map