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