import * as React from 'react'; import { FieldRef } from '@mui/x-date-pickers/models'; import { UseFieldResponse } from '@mui/x-date-pickers/internals'; import { RangeFieldSection } from '../../models/fields'; export interface UseMultiInputRangeFieldParams { sharedProps: TSharedProps; startTextFieldProps: TTextFieldSlotProps; startInputRef?: React.Ref; unstableStartFieldRef?: React.Ref>; endTextFieldProps: TTextFieldSlotProps; endInputRef?: React.Ref; unstableEndFieldRef?: React.Ref>; } export interface UseMultiInputRangeFieldResponse { startDate: UseFieldResponse; endDate: UseFieldResponse; }