import { Inline, Block } from 'slate'; import { Record } from 'immutable'; export declare type OptionsFormat = { types?: string[]; typeItem?: string; typeDefault?: string; canMerge?: (listA: Block | Inline, listB: Block | Inline) => boolean; }; declare const Options_base: Record.Class; /** * The plugin options */ declare class Options extends Options_base { types: string[]; typeItem: string; typeDefault: string; canMerge: (listA: Block | Inline, listB: Block | Inline) => boolean; } export default Options; //# sourceMappingURL=options.d.ts.map