import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
import { type PasteOptionsPluginState } from '../types/types';
export declare function createPlugin(dispatch: Dispatch, options?: {
    useNewPasteMenu?: boolean;
}): SafePlugin<PasteOptionsPluginState>;
