import { InputHTMLAttributes } from 'vue'; export interface Props { usePreciseValidation?: boolean; disabled?: boolean; readonly?: boolean; inputProps?: InputHTMLAttributes; initialValue?: string | null; modelValue?: string | null; }