import { ReactNode } from 'react'; import { type Style } from 'inlines'; export type TranslationTopBarProps = { preview?: ReactNode; style?: Style; value: string; onLangChange: (iso: string) => void; onClose?: () => void; onClearAll?: () => void; languages: string[]; }; export declare const TranslationTopBar: ({ style, languages, preview, value, onLangChange, onClose, onClearAll, }: TranslationTopBarProps) => import("react/jsx-runtime").JSX.Element;