UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

12 lines (11 loc) 519 B
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;