import { type Manifest, type FilepathList } from '../../../../webpack-types';
export declare function contentScripts(manifest: Manifest, excludeList: FilepathList): {
    content_scripts: {
        js: string[];
        css: string[];
    }[];
} | undefined;
