import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
import type { UserIntent } from './types';
export declare const userIntentPluginKey: PluginKey;
type UserIntentPluginState = {
    currentUserIntent: UserIntent;
};
export declare const createPlugin: () => SafePlugin<UserIntentPluginState>;
export {};
