import { type RawOptions } from '@rspack/binding'; import type { Compiler } from '../Compiler.js'; import { type LoaderContext, type LoaderDefinition, type LoaderDefinitionFunction, type PitchLoaderDefinitionFunction } from './adapterRuleUse.js'; import type { RspackOptionsNormalized } from './normalization.js'; import type { Resolve } from './types.js'; export type { LoaderContext, LoaderDefinition, LoaderDefinitionFunction, PitchLoaderDefinitionFunction, }; export declare const getRawOptions: (options: RspackOptionsNormalized, compiler: Compiler) => RawOptions; export declare function getRawResolve(resolve: Resolve): RawOptions['resolve'];