import { MaybeRefOrGetter } from 'vue'; export interface UseFormSchemaOptions { t?: (key: string) => string; te?: (key: string) => boolean; } export declare function useFormSchema(options?: UseFormSchemaOptions): { createSchema: ({ property, page }: { property: string; page: string; }) => void; translateSchema: ({ property, page }: { property: string; page: string; }) => void; getSchema: (property: MaybeRefOrGetter) => import('vue').ComputedRef<{} | undefined>; };