import type { DeviceContext } from "./context.ts"; import { DeviceProjection } from "./device.ts"; import type { ProtectSensorConfig } from "../types/index.ts"; /** * A sensor projection. Inherits the read-through getters, live `observe`, and write-through `update` from {@link DeviceProjection}; sensor-specific behavior * (sensitivity, mount type, thresholds) is expressed through `update` payloads. * * @category Devices */ export declare class Sensor extends DeviceProjection { readonly modelKey = "sensor"; constructor(ctx: DeviceContext, id: string); } //# sourceMappingURL=sensor.d.ts.map