import type { TranslationEditorToolbarConfig } from "./TranslationEditor"; /** * Derive toolbar configuration for a translation editor based on channel, * node type, and text style — mirroring the same constraints the designer * enforces when authoring. * * Returns `false` when the toolbar should be completely hidden * (plain-text channels, raw/meta/action fields). */ export declare function getTranslationToolbarConfig(channel: string, nodeType: string, textStyle?: string): TranslationEditorToolbarConfig | false;