import { DeviceItemType, HttpPageResult2 } from '../../core'; import { IDynamicDeviceListResult } from './interface'; export declare function queryDeviceList(params?: any): Promise>; export declare const LIMIT = 30; /** * @desc 懒加载方法 */ export declare const loadNextPage: (d?: IDynamicDeviceListResult, defaultLimit?: number, params?: any) => Promise<{ list: DeviceItemType[]; count: number; offset: number; limit: number; }>; export declare const skeletonList: { skeleton: boolean; }[];