import { type Compiler } from '@rspack/core';
interface SpecialFoldersPluginOptions {
    manifestPath: string;
}
/**
 * SpecialFoldersPlugin is responsible for handling the
 * three types of special folders in the extension:
 *
 * - /pages - HTML pages not included in the manifest
 * - /scripts - Script files not included in the manifest
 * - /public - Static files not included in the manifest
 */
export declare class SpecialFoldersPlugin {
    static readonly name: string;
    private readonly options;
    constructor(options: SpecialFoldersPluginOptions);
    apply(compiler: Compiler): void;
}
export {};
