import type { Ref } from '@vue/reactivity'; export declare const useFieldArray: (fieldName: Ref) => { values: import("@vue/reactivity").ComputedRef; push: (newElement: TEachValue) => void; remove: (index: number) => void; swap: (indexA: number, indexB: number) => void; moveRight: (index: number) => void; moveLeft: (index: number) => void; };