UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

11 lines 545 B
import * as React from 'react'; import type { TextFieldProps } from "../../../models/gridBaseSlots.mjs"; import type { GridFilterInputValueProps } from "../../../models/gridFilterInputComponent.mjs"; export type GridFilterInputSingleSelectProps = GridFilterInputValueProps<TextFieldProps> & { type?: 'singleSelect'; }; declare function GridFilterInputSingleSelect(props: GridFilterInputSingleSelectProps): React.JSX.Element | null; declare namespace GridFilterInputSingleSelect { var propTypes: any; } export { GridFilterInputSingleSelect };