UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

10 lines (9 loc) 517 B
import { FieldSection, PickerOwnerState } from '../../../models'; import type { UsePickerProps } from './usePicker.types'; import { UsePickerValueResponse } from './usePickerValue.types'; interface UsePickerOwnerStateParameters<TValue> { props: UsePickerProps<TValue, any, any, any, any, any>; pickerValueResponse: UsePickerValueResponse<TValue, FieldSection, any>; } export declare function usePickerOwnerState<TValue>(parameters: UsePickerOwnerStateParameters<TValue>): PickerOwnerState<TValue>; export {};