import { MaybeRefOrGetter } from 'vue'; /** * Fetches the name of a resource based on its URI, vocabulary, and property. */ export declare function useRequestUriName(options: { res: MaybeRefOrGetter; voc: MaybeRefOrGetter; property: MaybeRefOrGetter; locale: MaybeRefOrGetter; }): { state: import('vue').Ref; isReady: import('vue').Ref; isLoading: import('vue').Ref; error: import('vue').Ref; execute: (delay?: number) => Promise; then, TResult2 = never>(onfulfilled?: ((value: import('@vueuse/core').UseAsyncStateReturnBase) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): PromiseLike; };