import { type Manifest, type FilepathList } from '../../../../webpack-types';
export declare function webAccessibleResources(manifest: Manifest, excludeList: FilepathList): 0 | {
    web_accessible_resources: string[] | {
        resources: string[];
        matches?: string[];
        extension_ids?: string[];
        use_dynamic_url?: boolean;
    }[];
} | undefined;
