import type { AnyObject } from 'src/types/global'; import type { FormSchema, SchemaFormProps } from '../types'; import type { ComputedRef, Ref } from 'vue'; export declare function useFormValues({ formModel, bindValue, schemas, escapeProps, }: { formModel: AnyObject; bindValue: ComputedRef; schemas: ComputedRef[]>; escapeProps?: Ref>>; }): { formModel: AnyObject; initFormModelValue: () => void; };