import type { GetGyroCleanRecordDetailParams, GetGyroCleanRecordDetailResponse } from './type'; /** * 获取陀螺仪扫地机的清扫记录详情 * @public * @since @ray-js/ray 1.7.14 * @since 基础库 2.29.0 * @param params - 查询参数,包含设备 ID、子记录 ID 和分页信息 * @returns Promise,resolve 值为清扫记录的地图数据和分页信息 * @example * ```tsx * import React from 'react'; * import { Button, getGyroCleanRecordDetail } from '@ray-js/ray'; * * export default function Demo() { * const handleFetch = async () => { * const detail = await getGyroCleanRecordDetail({ * devId: 'your-device-id', * subRecordId: 12345, * start: 0, * size: 100, * }); * console.log(detail.dataList, detail.hasNext); * }; * return ; * } * ``` */ declare const getGyroCleanRecordDetail: (params: GetGyroCleanRecordDetailParams) => Promise; export default getGyroCleanRecordDetail;