import { type LoaderContext } from '@rspack/core';
interface InjectBackgroundClientContext extends LoaderContext<any> {
    getOptions: () => {
        manifestPath: string;
        browser: string;
    };
}
export default function (this: InjectBackgroundClientContext, source: string): string;
export {};
