import { TolgeeFormat } from '@tginternal/editor'; import { RefObject } from 'react'; import { EditorView } from '@codemirror/view'; import { EditorProps } from './Editor'; type Props = { locale: string; value: TolgeeFormat; onChange?: (value: TolgeeFormat) => void; activeVariant?: string; onActiveVariantChange?: (variant: string) => void; editorProps?: Partial; autofocus?: boolean; activeEditorRef?: RefObject; mode: 'placeholders' | 'syntax' | 'plain'; }; export declare const PluralEditor: ({ locale, value, onChange, activeVariant, onActiveVariantChange, autofocus, activeEditorRef, editorProps, mode, }: Props) => import("react/jsx-runtime").JSX.Element; export {};