import type EventEmitter from 'eventemitter3'; type CallbackFunction = (...args: any[]) => any; /** * 为 Control 绑定对应事件的回调,并且在回调函数发生更新时重新绑定 * @param control * @param props */ export declare const useL7ComponentEvent: >(control: C, props: Record) => void; export {};