import { type ComputedRef } from 'vue'; import { type EditorProps } from '../typings'; export declare function useEditorIframeCommunication(options: { mergedProps: ComputedRef; }): { registryInnerChannel: (editor: any) => void; registryOuterChannel: (editor: any, callback: (...args: any[]) => any) => void; };