import React from 'react'; import { Box } from '@mui/material'; import { StateInType, StateType } from '../State/translationStates'; type ControlsProps = { state?: StateType; mode?: 'placeholders' | 'syntax'; isBaseLanguage?: boolean; stateChangeEnabled?: boolean; onStateChange?: (state: StateInType) => void; onModeToggle?: () => void; controlsProps?: React.ComponentProps; language: string | undefined; }; export declare const ControlsEditorSmall: React.FC; export {};