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