import { RuleSetCondition, RuleSetRule } from 'webpack'; import { ESBuildLoaderOptions } from './getWebpackScriptLoaders'; interface Params { test?: RuleSetCondition; chunkPath: string; esbuildLoaderOptions: ESBuildLoaderOptions; } export declare function getWebpackSVGLoaders({ test, chunkPath, esbuildLoaderOptions, }: Params): RuleSetRule[]; export {};