import { DocNode } from '@atlaskit/adf-schema'; import type { FullContext } from '../types'; interface AdfPostMessageData { type: 'adf-document'; document: DocNode; timestamp: number; source: 'forge-adf-renderer'; localId: string; isEditing: boolean; contentId: string; } export declare const sendMessageWhenReady: (iframe: HTMLIFrameElement | null, message: AdfPostMessageData, origin: string) => void; export declare const createAdfRendererIframeProps: (context: FullContext, iframeId?: string) => Promise<{ id: string; src: string; onLoad: () => void; }>; export {}; //# sourceMappingURL=adf-renderer.d.ts.map