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