export declare const useRangeModel: (props: any, currValue: any, startValue: any, endValue: any) => void; export declare const useModel: (props: any) => { startModelValue: import('vue').ComputedRef; endModelValue: import('vue').ComputedRef; currModelValue: import('vue').ComputedRef; returnModelValue: (value: any) => void; returnStartValue: (value: any) => void; returnEndValue: (value: any) => void; }; export declare const useMobile: (formNode: any) => { onMobileConfirm: (val: any) => void; onMobileHiddenPopup: () => void; isMobile: boolean; }; export declare const useFormValidation: (props: any, attrs: any) => { initRules: () => any; };