import { Ref } from 'vue'; import { DateInputModelValue } from '../types'; /** * This guard is used to prevent updating modelValue if range end is not specified. * This guard provides reset method, that allow us to reset VaDateInput value if dropdown is closed. */ export declare const useRangeModelValueGuard: (modelValue: Ref, disabled: Ref) => { valueComputed: import("vue").WritableComputedRef; reset: () => void; };