import type { SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttpApiError, ThermostatsHeatBody } from '@seamapi/http/connect'; import type { ActionAttempt } from '@seamapi/types/connect'; import { type UseMutationResult } from '@tanstack/react-query'; export type UseHeatThermostatParams = never; export type UseHeatThermostatData = undefined; export type UseHeatThermostatMutationVariables = Pick; type HeatThermostatActionAttempt = Extract; type MutationError = SeamHttpApiError | SeamActionAttemptFailedError | SeamActionAttemptTimeoutError; export declare function useHeatThermostat(): UseMutationResult; export {};