import React from 'react';
import Chip from '@mui/material/Chip';
type Option = string | {
    label: string;
    value: string;
};
interface MuiChipSelectProps {
    options: Option[];
    onChange: (selected: Option[]) => void;
    chipProps?: React.ComponentProps<typeof Chip>;
    className?: string;
}
declare function MuiChipSelect({ options, onChange, chipProps, className }: MuiChipSelectProps): JSX.Element;
export default MuiChipSelect;
