import type { RegleFieldStatus } from '@regle/core'; import { type ComputedRef, type Ref } from 'vue'; export type UseFieldValidationParams = { field: Ref>; }; export type UseFieldValidationReturn = { invalid: ComputedRef; validationText?: ComputedRef; }; export declare const useFieldValidation: ({ field: fieldRef, }: UseFieldValidationParams) => UseFieldValidationReturn;