import { LoaderContext } from 'webpack';

interface InjectBackgroundAcceptContext extends LoaderContext<any> {
    getOptions: () => {
        manifestPath: string;
    };
}
declare function export_default(this: InjectBackgroundAcceptContext, source: string): string;

export { export_default as default };
