import type { SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttpApiError, ThermostatsCoolBody } from '@seamapi/http/connect'; import type { ActionAttempt } from '@seamapi/types/connect'; import { type UseMutationResult } from '@tanstack/react-query'; export type UseCoolThermostatParams = never; export type UseCoolThermostatData = undefined; export type UseCoolThermostatMutationVariables = Pick; type CoolThermostatActionAttempt = Extract; type MutationError = SeamHttpApiError | SeamActionAttemptFailedError | SeamActionAttemptTimeoutError; export declare function useCoolThermostat(): UseMutationResult; export {};