import { Devices, Http } from '../types';
declare class DevicesImpl implements Devices {
    private http;
    private cache;
    constructor(http: Http);
    getDevices(filters?: any): Promise<any[]>;
    getDevice(deviceId: string): Promise<any>;
}
export default DevicesImpl;
