export declare function useAllReady(fn: any): void; interface IOptions { loading?: boolean | string; } /** * 监听表单字段值变化 * @param effect 处理事件 * @param key 监听控件name,相同name情况建议用 containerId.name 的方式区分,containerId为form表单的id * @param options {loading:boolean|string} */ export declare function useValuesChange(effect: Function, key: string | string[], options?: IOptions): void; /** * 监听表格字段值变化,目前仅支持pc表格 * @param effect 处理事件 * @param key 监听dataIndex,相同dataIndex情况建议用 containerId.dataIndex 的方式区分,containerId为表格组件的id * @param options {loading:boolean|string} */ export declare function useDataIndexChange(effect: Function, key: string | string[], options?: IOptions): void; /** * 监听 NG.getObserver().notify 发送的通知 * @param effect 监听事件 * @param type 事件类型 */ export declare function useNotifyListener(effect: Function, type: 'print' | 'searchSwitch' | String): void; /** * 监听页面打印事件 * @param effect 打印执行函数 */ export declare function usePagePrint any>(effect: T): void; export {};