@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
13 lines (12 loc) • 584 B
TypeScript
/// <reference types="react" />
import { TextFieldProps } from '@mui/material/TextField';
import { GridFilterInputValueProps } from './GridFilterInputValueProps';
export declare const SUBMIT_FILTER_STROKE_TIME = 500;
export interface GridTypeFilterInputValueProps extends GridFilterInputValueProps {
type?: 'text' | 'number' | 'date' | 'datetime-local' | 'singleSelect';
}
declare function GridFilterInputValue(props: GridTypeFilterInputValueProps & TextFieldProps): JSX.Element;
declare namespace GridFilterInputValue {
var propTypes: any;
}
export { GridFilterInputValue };