import ICorePlugin, { ICorePluginClass, IBrowserEmulator, IHumanEmulator } from './ICorePlugin'; export default interface ICorePlugins extends Omit { browserEmulator: IBrowserEmulator; humanEmulator: IHumanEmulator; use(CorePlugin: ICorePluginClass): void; }