/** * * @description 上报数据埋点到个推 * 桥接type: 69 * @example **示例代码** ```js import { reportDAEvent } from '@kbapp/js-bridge'; reportDAEvent({ eventName: 'event_name', eventParams: { test_param: 'test_value', }, success() { console.log('上报成功') }, }) ``` */ export declare const reportDAEvent: (params: { /** 事件名 */ eventName: string; /** 上报值 */ eventParams?: { [key: string]: any; }; /** 开始结束类型传递 */ eventType?: "Begin" | "End"; } & { success?: ((res: void) => void) | undefined; fail?: (error: import('./bridge-code').BridgeCode) => void; complete?: () => void; }) => Promise;