import type { LocalizedStrings, ReactEditorPlugin } from '../../common/index'; import type { PasteOptionStringKeys } from '../type/PasteOptionStringKeys'; /** * Create a new instance of PasteOption plugin to show an option pane when paste, so that user can choose * an option to change the paste result, including: * - Paste as is * - Paste as text * - Paste and merge format * @param strings Localized string for this plugin * @returns A paste option plugin */ export declare function createPasteOptionPlugin(strings?: LocalizedStrings): ReactEditorPlugin;