import type { Compiler } from '@winner-fed/bundler-webpack/compiled/webpack'; interface IOpts { } declare class _SamplePlugin { options: IOpts; constructor(options?: IOpts); apply(compiler: Compiler): void; } export default _SamplePlugin;