import Plugin from "./Plugin";
import { DrawEventParams } from "../common/type";
export default class Repeal extends Plugin {
    name: string;
    iconfont: string;
    title: string;
    disappearImmediately: boolean;
    onEnter: (drawEventParams: DrawEventParams) => void;
}
