import { Relay } from "./Relay"; export declare class ThresholdRelay extends Relay { static SCHEMA: { activation_threshold: NumberConstructor; deactivation_threshold: NumberConstructor; automation: typeof import("../Component").Bool; power: typeof import("../Component").Bool; last_on: NumberConstructor; last_off: NumberConstructor; cooldown_duration: NumberConstructor; in_cooldown: NumberConstructor; }; activationThreshold?: number; deactivationThreshold?: number; activation_threshold: number; deactivation_threshold: number; }