import type { Ref } from 'vue' import type { DatePickerCommonProps } from '../../types' import { useDateTextInputBaseProps } from '../../props/dateTextInputBaseProps' export const useDateTextInputProps = ( props: DatePickerCommonProps, labelWithAsterisk: Ref, errorMessages: Ref, ) => ({ ...useDateTextInputBaseProps(props, labelWithAsterisk, errorMessages), })