import type { MakeOptional } from '@mui/x-internals/types'; import { PickerManager, DateTimeValidationError } from "../models/index.js"; import { UseFieldInternalProps } from "../internals/hooks/useField/index.js"; import { AmPmProps } from "../internals/models/props/time.js"; import { ExportedValidateDateTimeProps, ValidateDateTimeProps } from "../validation/validateDateTime.js"; import { PickerValue } from "../internals/models/index.js"; export declare function useDateTimeManager(parameters?: UseDateTimeManagerParameters): UseDateTimeManagerReturnValue; type SharedDateTimeAndDateTimeRangeValidationProps = 'disablePast' | 'disableFuture' | 'minTime' | 'maxTime' | 'minDate' | 'maxDate'; export declare function useApplyDefaultValuesToDateTimeValidationProps(props: Pick): Pick; export interface UseDateTimeManagerParameters { enableAccessibleFieldDOMStructure?: TEnableAccessibleFieldDOMStructure; } export type UseDateTimeManagerReturnValue = PickerManager>; export interface DateTimeManagerFieldInternalProps extends MakeOptional, 'format'>, ExportedValidateDateTimeProps, AmPmProps {} export {};