import { Ref } from 'vue'; import { InputType, InputValueType } from './types'; export declare function useVsInputRules(required: Ref, max: Ref, min: Ref, type: Ref): { requiredCheck: (v: InputValueType) => "" | "required"; maxCheck: (v: InputValueType) => string; minCheck: (v: InputValueType) => string; };