import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { ResolvedUserPreferences } from '@atlaskit/editor-common/user-preferences';
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
import type { Config, UserPreferencesPlugin } from '../userPreferencesPluginType';
export declare const userPreferencesPluginKey: PluginKey<any>;
type UserPreferencesPluginState = {
    preferences: ResolvedUserPreferences;
};
export declare const createPlugin: (pluginOptions: Config, _api: ExtractInjectionAPI<UserPreferencesPlugin> | undefined) => SafePlugin<UserPreferencesPluginState>;
export {};
