import { PlatePlugin } from '../types/PlatePlugin/PlatePlugin'; import { WithOverride } from '../types/PlatePlugin/WithOverride'; import { SPEditor } from '../types/SPEditor'; export interface WithInlineVoidOptions { plugins?: PlatePlugin[]; inlineTypes?: string[]; voidTypes?: string[]; } /** * Merge and register all the inline types and void types from the plugins and options, * using `editor.isInline` and `editor.isVoid` */ export declare const withInlineVoid: ({ plugins, inlineTypes, voidTypes, }: WithInlineVoidOptions) => WithOverride; /** * @see {@link withInlineVoid} */ export declare const createInlineVoidPlugin: (options_0: WithInlineVoidOptions) => PlatePlugin; //# sourceMappingURL=createInlineVoidPlugin.d.ts.map