import { Compiler } from '@rspack/core';
import { PluginInterface, FilepathList } from '../../../webpack-types';
export declare class CheckManifestFiles {
    readonly manifestPath: string;
    readonly includeList?: FilepathList;
    readonly excludeList?: FilepathList;
    constructor(options: PluginInterface);
    extractPaths(value: string | string[] | {
        light: string;
        dark: string;
    } | {
        light: string;
        dark: string;
    }[]): any[];
    private handleErrors;
    apply(compiler: Compiler): void;
}
