import type { SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttpApiError, ThermostatsHeatCoolBody } from '@seamapi/http/connect'; import type { ActionAttempt } from '@seamapi/types/connect'; import { type UseMutationResult } from '@tanstack/react-query'; export type UseHeatCoolThermostatParams = never; export type UseHeatCoolThermostatData = undefined; export type UseHeatCoolThermostatMutationVariables = Pick; type HeatCoolThermostatActionAttempt = Extract; type MutationError = SeamHttpApiError | SeamActionAttemptFailedError | SeamActionAttemptTimeoutError; export declare function useHeatCoolThermostat(): UseMutationResult; export {};