import { Ref } from "vue"; export interface Options { type?: "js" | "css"; js?: Partial; css: Partial; } export declare type Status = "unset" | "loading" | "ready" | "error"; declare const useExternal: (path: string | Ref, options: Options) => Ref; export default useExternal;