type ScriptStatus = 'idle' | 'loading' | 'ready' | 'error'; export declare const useScript: (src: string) => ScriptStatus; export {};