import { DeviceConfig } from "@zwave-js/config"; import { type MaybeNotKnown } from "@zwave-js/core"; import { type BytesView } from "@zwave-js/shared"; import { FirmwareUpdateMixin } from "./70_FirmwareUpdate.js"; export interface NodeDeviceConfig { /** * Contains additional information about this node, loaded from a config file */ get deviceConfig(): MaybeNotKnown; /** * Returns the manufacturer/brand name defined in the device configuration, * or looks it up from the manufacturer database if no config is available */ get manufacturer(): MaybeNotKnown; /** * Returns the device label defined in the device configuration. */ get label(): MaybeNotKnown; get deviceDatabaseUrl(): MaybeNotKnown; /** * Returns whether the device config for this node has changed since the last interview * in a way that affects interview behavior (compat flags, association settings, proprietary config). * Changes to configuration parameter metadata are applied dynamically and do not require re-interview. */ hasDeviceConfigChanged(): MaybeNotKnown; } export declare abstract class DeviceConfigMixin extends FirmwareUpdateMixin implements NodeDeviceConfig { private _deviceConfig; /** * Contains additional information about this node, loaded from a config file */ get deviceConfig(): MaybeNotKnown; protected set deviceConfig(value: MaybeNotKnown); /** * Returns the manufacturer/brand name defined in the device configuration, * or looks it up from the manufacturer database if no config is available */ get manufacturer(): MaybeNotKnown; /** * Returns the device label defined in the device configuration. */ get label(): MaybeNotKnown; get deviceDatabaseUrl(): MaybeNotKnown; /** * Returns whether the device config for this node has changed since the last interview * in a way that affects interview behavior (compat flags, association settings, proprietary config). * Changes to configuration parameter metadata are applied dynamically and do not require re-interview. */ hasDeviceConfigChanged(): MaybeNotKnown; protected set cachedDeviceConfigHash(value: BytesView | undefined); private _currentDeviceConfigHash; protected set currentDeviceConfigHash(value: BytesView | undefined); /** * Loads the device configuration for this node from a config file */ protected loadDeviceConfig(): Promise; } //# sourceMappingURL=80_DeviceConfig.d.ts.map