import { Emitter } from 'mitt';
/** 全局公共事件需要在此处添加类型 */
type Events = {
    openPanel: string;
    tagViewsChange: string;
    tagViewsShowModel: string;
    logoChange: boolean;
    changLayoutRoute: string;
};
export declare const emitter: Emitter<Events>;
export {};
