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