import { Ref } from "vue";
export declare function useImage(url: string | Ref<string>, crossorigin?: string | Ref<string>, referrerPolicy?: string | Ref<string>): readonly [Ref<HTMLImageElement | null, HTMLImageElement | null>, Ref<"error" | "loading" | "loaded", "error" | "loading" | "loaded">];
