import type { LoaderContext } from '../../types.webpack';
declare const _default: (this: LoaderContext, source: string) => string;
/**
 * A webpack loader to handle SSR dependencies
 *
 * This loader will only take effect in server bundle
 * because we only replace `ssrRender` code
 *
 * But we still need to use this loader in client,
 * to ensure that the module `request` in client and
 * server bundle are the same
 */
export = _default;
