export interface EmitOptions {
    name: string;
    data?: any;
}
/**
 * 事件触发
 */
export declare const emit: (options: EmitOptions) => void;
