import { RteFeatureImpl, ToolbarItemContribution } from '../feature'; import { RteInstanceImpl } from '../instance'; export interface TextBlockOption { node: string; label: string; } export type RteTextBlockPickerConfig = { options: TextBlockOption[]; }; export declare class RteTextBlockPickerFeatureImpl extends RteFeatureImpl { protected config: RteTextBlockPickerConfig; name: string; constructor(config: RteTextBlockPickerConfig); getToolbarItems(rte: RteInstanceImpl): ToolbarItemContribution[]; } export declare const RteTextBlockPickerFeature: { new (config: RteTextBlockPickerConfig): {}; };