import { IPlugin } from '@fishx/types'; interface opt { polyfills?: string[]; } export default class IESupportPlugin implements IPlugin { private options; constructor(options?: opt); addBeforeImport(): string; } export {};