type TranslationFieldProps = { label?: string; fieldType?: 'text' | 'textarea' | 'richtext'; fromValue: string; toValue?: string; onTextChange: (data: string) => void; onStatusChange: (approved: boolean) => void; approved?: boolean; to: string; from: string; }; export declare const TranslationField: ({ label, fieldType, fromValue, toValue, onStatusChange, onTextChange, approved, }: TranslationFieldProps) => import("react/jsx-runtime").JSX.Element; export {};