import { Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../../webpack-types';
import { DevOptions } from '../../../../develop-lib/config-types';
export declare class AddPublicPathForMainWorld {
    readonly manifestPath: string;
    readonly browser: DevOptions['browser'];
    readonly includeList: FilepathList;
    readonly excludeList: FilepathList;
    constructor(options: PluginInterface);
    apply(_compiler: Compiler): void;
}
