import { Ref } from 'vue';
import { FormModel } from '../resources/types/fieldAttributes';
import { Field } from '../resources/types/field/fields';
/**
 * @deprecated will be removed in 3.0.0, use `useValidation` instead.
 */
export declare function useFieldValidate(model: FormModel, field: Field, isDisabled?: boolean, isRequired?: boolean, isReadOnly?: boolean): {
    errors: Ref<string[], string[]>;
    validate: (currentModelValue: any) => Promise<string[]>;
};
