import type { Compiler } from 'webpack'; import type { Saber } from '..'; export default class PrintStatusPlugin { api: Saber; type: string; constructor({ api, type }: { api: Saber; type: string; }); apply(compiler: Compiler): void; }