import type { GetGyroCleanRecordsParams, GetGyroCleanRecordsResponse } from './type'; /** * 获取陀螺仪扫地机的清扫记录列表 * @public * @since @ray-js/ray 1.7.14 * @since 基础库 2.29.0 * @param params - 查询参数,包含设备 ID、DP 点集合和分页信息 * @returns Promise,resolve 值为陀螺仪清扫记录列表和总数 * @example * ```tsx * import React from 'react'; * import { Button, getGyroCleanRecords } from '@ray-js/ray'; * * export default function Demo() { * const handleFetch = async () => { * const result = await getGyroCleanRecords({ * devId: 'your-device-id', * dpIds: [101, 102], * offset: 0, * limit: 10, * }); * console.log(result.datas, result.totalCount); * }; * return ; * } * ``` */ declare const getGyroCleanRecords: (params: GetGyroCleanRecordsParams) => Promise; export default getGyroCleanRecords;