export declare class Foobot {
    readonly apiKey: string;
    readonly BASE_HREF: string;
    constructor(apiKey: string);
    /**
     * List devices associated with user
     */
    getDevices(userName: string): Promise<any[]>;
    /**
     * List devices associated with user
     */
    getLastDataPoints(uuid: string, period?: number, averageBy?: number, sensorList?: string): Promise<any>;
    request(url: string, options?: any): Promise<any>;
}
//# sourceMappingURL=foobot.d.ts.map