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