import type { Dispatch } from 'react'; import type { StoreApi } from 'zustand'; import type { FormFieldMessagesReducerAction } from '../../../../forms/forms-core/state/formfield-messages-state-reducer.js'; import { type TimeValue } from '../../../types/time.js'; import type { DateTimePickerValueStore, DateTimePickerValueStoreActions } from '../dateTimePicker.types.js'; /** * Creates actions for the DateTimePicker store using the slice action handlers. * @internal */ export declare function getDateTimePickerActions(formFieldMessagesDispatch?: Dispatch, onChangeProp?: ((value: TimeValue | null | '') => void) | undefined, isControlled?: boolean): (set: StoreApi["setState"]) => DateTimePickerValueStoreActions;