import { SerializableOperation } from './operations';
interface LoaderOptions {
    operations: SerializableOperation[];
    moduleRequest: string;
    constants: Record<string, string>;
}
interface modifyModuleSourceLoader {
    getOptions?: () => LoaderOptions;
}
export default function modifyModuleSourceLoader(this: modifyModuleSourceLoader, source: string): string;
export {};
