type ScriptProps = { src: string; async?: boolean; defer?: boolean; afterLoad?: boolean; }; export declare const injectScript: ({ src, async, defer, afterLoad, ...otherProps }: ScriptProps) => void; export {};