import { ComputedRef } from 'vue';
import { Field } from '../resources/types/field/fields';
import { FormModel } from '../resources/types/fieldAttributes';
/**
 * Composable for current model state of current field
 * @param model - form schema model
 * @param field - form field
 */
export declare function useFormModel(model: FormModel, field: Field): {
    currentModelValue: ComputedRef<any>;
};
