import { RteInstanceImpl } from '../instance'; import { SchemaContribution, ToolbarItemContribution } from '../feature'; import { RteTextStyleFeatureImpl } from './internal/text-style'; export declare class RteBoldFeatureImpl extends RteTextStyleFeatureImpl { name: string; protected markName: string; getSchema(): SchemaContribution[]; getPlugins(rte: RteInstanceImpl): { priority: number; featureName: string; value: import('prosemirror-state').Plugin; }[]; getToolbarItems(rte: RteInstanceImpl): ToolbarItemContribution[]; } export declare const RteBoldFeature: { new (config?: import('./internal/text-style').RteTextStyleConfig | undefined): {}; };