///
import { TextFieldProps } from '@mui/material';
import { WrappedRangePickerProps } from '../range-pickers/wrapper';
import { PickerTypes } from '../shared/pickers';
type PopoverInputProps = Omit;
type Props
= WrappedRangePickerProps
& {
popoverInputProps?: PopoverInputProps;
};
export { Props as WrappedRangeInputProps };
export declare function wrapRangeInput