import { FormControlProps } from '@mui/material/FormControl';
export interface LocaleSelectProps {
    showTitle?: boolean;
    showFullNames?: boolean;
    formControlProps?: FormControlProps;
}
/**
 * A UI for selecting the locale with i18next
 */
export default function LocaleSelect(props: LocaleSelectProps): import("react/jsx-runtime").JSX.Element;
