import type { SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttpApiError, ThermostatsOffBody } from '@seamapi/http/connect'; import type { ActionAttempt } from '@seamapi/types/connect'; import { type UseMutationResult } from '@tanstack/react-query'; export type UseSetThermostatOffParams = never; export type UseSetThermostatOffData = undefined; export type UseSetThermostatOffMutationVariables = ThermostatsOffBody; type SetThermostatOffActionAttempt = Extract; type MutationError = SeamHttpApiError | SeamActionAttemptFailedError | SeamActionAttemptTimeoutError; export declare function useSetThermostatOff(): UseMutationResult; export {};