import { AnyArenaNode, DefaultPluginOptions } from '../../interfaces'; import Textarena from '../../Textarena'; export declare type ContentItem = { id: string; slug: string; originalTitle: string; title?: string; active: boolean; }; export declare type Contents = Array; export declare type ContentsProcessor = (textarena: Textarena, node: AnyArenaNode) => void; export declare type ContentsComponentProcessor = (node: AnyArenaNode) => void; export declare type ContentsOptions = DefaultPluginOptions & { processor: ContentsProcessor; };