import * as React from 'react'; import type { GridFilterInputValueProps } from "../../../models/gridFilterInputComponent.js"; import type { TextFieldProps } from "../../../models/gridBaseSlots.js"; export type GridFilterInputDateProps = GridFilterInputValueProps & { type?: 'date' | 'datetime-local'; }; declare function GridFilterInputDate(props: GridFilterInputDateProps): React.JSX.Element; declare namespace GridFilterInputDate { var propTypes: any; } export { GridFilterInputDate };