import { Ref } from 'vue';
import { FormModel } from '../resources/types/fieldAttributes';
import { Field } from '../resources/types/field/fields';
export declare function useFieldValidate(model: FormModel, field: Field, isDisabled?: boolean, isRequired?: boolean, isReadOnly?: boolean): {
    errors: Ref<string[], string[]>;
    validate: (currentModelValue: any) => Promise<string[]>;
};
