import { B1 } from './B1'; import { DPT } from '../../enums'; /** KNX DPT 1.011 — State (1-bit active/inactive). */ export declare class DPT_State extends B1 { readonly type: DPT; readonly unit: string; /** Encoded value for inactive state. */ static readonly INACTIVE = 0; /** Encoded value for active state. */ static readonly ACTIVE = 1; toString(value?: number): string; } //# sourceMappingURL=DPT_State.d.ts.map