import { type Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../../webpack-types';
export declare class AddAssetsToCompilation {
    readonly manifestPath: string;
    readonly includeList?: FilepathList;
    readonly excludeList?: FilepathList;
    readonly browser?: string;
    constructor(options: PluginInterface);
    private normalizePublicPath;
    apply(compiler: Compiler): void;
}
