import type { TypographyProps } from '@mui/material';
type Variant = TypographyProps['variant'];
type EditableTypographyClassKey = 'input' | 'inputBase' | 'inputRoot' | 'inputFocused';
interface Props {
    value: string;
    setValue: (value: string) => void;
    variant: Variant;
    classes?: Partial<Record<EditableTypographyClassKey, string>>;
}
declare const EditableTypography: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<HTMLDivElement>>;
export default EditableTypography;
