import { ComponentsOverrides, SxProps, type Theme } from '@mui/material/styles';
import { StackProps } from '@mui/material';
import { ReactElement, ReactNode } from 'react';
import { UseTranslatableOptions } from 'ra-core';
/**
* Provides a way to edit multiple languages for any input passed as children.
* It expects the translatable values to have the following structure:
* {
* name: {
* en: 'The english value',
* fr: 'The french value',
* tlh: 'The klingon value',
* },
* description: {
* en: 'The english value',
* fr: 'The french value',
* tlh: 'The klingon value',
* }
* }
*
* @example