import { ResourceType } from '../utils/browser-utils.js'; declare class BrowserTools { listResources({ type }: { type: ResourceType; }): Promise>; loadItem({ device_id, track_id }: { device_id: string; track_id?: string; }): Promise; } export default BrowserTools;