import { type Compiler } from "webpack"; export default class FederationStatsPlugin { protected readonly options: { fileName: string; }; entryKeys: string[]; constructor(options?: { fileName: string; }); apply(compiler: Compiler): void; }