import { Plugin } from './plugin'; export interface IOpts { plugin: Plugin; key: string; fn: Function; before?: string; stage?: number; } export declare class Hook { plugin: Plugin; key: string; fn: Function; before?: string; stage?: number; constructor(opts: IOpts); }