@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
12 lines (11 loc) • 612 B
TypeScript
import * as React from 'react';
import { AutocompleteProps } from '@mui/material/Autocomplete';
import { GridFilterInputValueProps } from './GridFilterInputValueProps';
export type GridFilterInputMultipleValueProps = {
type?: 'text' | 'number' | 'date' | 'datetime-local';
} & GridFilterInputValueProps & Omit<AutocompleteProps<string, true, false, true>, 'options' | 'renderInput'>;
declare function GridFilterInputMultipleValue(props: GridFilterInputMultipleValueProps): React.JSX.Element;
declare namespace GridFilterInputMultipleValue {
var propTypes: any;
}
export { GridFilterInputMultipleValue };