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