import { AxiosInstance } from 'axios';
export default class HttpClient {
    httpClient: AxiosInstance;
    constructor(host: string, useHTTPS: boolean, apiKey: string);
    getLightByUniqueId(uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
    updateLightBrightness(bri: number, uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
    setLightOn(uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
    getSensorState(uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
}
//# sourceMappingURL=httpClient.d.ts.map