import { ChipProps } from '@mui/material'; interface ChipOrPlaceholderProps { data: string[]; placeholder: string; onDelete?: () => void; chipProps?: Omit; } declare const ChipOrPlaceholder: React.FC; export default ChipOrPlaceholder;