import React from 'react'; import { StackProps } from '@mui/material/Stack'; import { TypographyProps } from '@mui/material/Typography'; import { ChipProps, Tooltip } from '../../../index.js'; import { TextAndLang } from '../../../../types/index.js'; export type TextWithChipCell = StackProps & { name?: TextAndLang[]; icon?: React.ReactNode; namePlaceholder?: React.ReactNode; showIcon?: boolean; showLabel?: boolean; slotsProps?: { tooltip?: Partial>; chip?: Partial; chipsTooltip?: Partial>; label?: Partial; labelTooltip?: Partial>; }; }; declare const _default: React.MemoExoticComponent<(props: TextWithChipCell<"div">) => React.JSX.Element | null>; export default _default;