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