import * as React from 'react';
declare type Props = {
    src: string;
    onLoaded: (src: string) => void;
};
export declare class SimpleScriptInjector extends React.Component<Props> {
    static readonly injected: {
        [src: string]: HTMLScriptElement;
    };
    componentDidMount(): void;
    render(): string;
}
export {};
