import type { EditorContainerWidth, NextEditorPlugin, PublicPluginAPI } from '../types';
type WidthPluginType = NextEditorPlugin<'width', {
    sharedState: EditorContainerWidth | undefined;
}>;
export type ExtensionsPluginInjectionAPI = PublicPluginAPI<[WidthPluginType]> | undefined;
export {};
