/// <reference types="webpack" />
import { RuleSetRuleWithStrategy } from './common';
export interface UrlRule extends RuleSetRuleWithStrategy {
    options?: {
        fallback?: string;
        limit?: number | boolean;
        name?: string;
    };
}
/**
 * Support importing images, also files.
 * @param rule - Webpack rule merge to url-loader.
 */
export declare function url(rule?: UrlRule): import("webpack").Configuration & {
    module: {
        rules: import("webpack").RuleSetRule[];
    };
};
