import type { Events } from '@prezly/events'; import type { PlatePlugin } from '@udecode/plate-common/react'; import { type EditorEventMap } from '../events'; import type { EditorProps } from './types'; type Parameters = { events: Events; } & Pick, 'withAutoformat' | 'withBlockquotes' | 'withCallouts' | 'withDivider' | 'withHeadings' | 'withLists' | 'withTextStyling'>; export declare function getEnabledPlugins(parameters: Parameters): Generator; export {};