import { type CommandClasses } from "@zwave-js/core"; import { Bytes, type BytesView } from "@zwave-js/shared"; export interface SUCUpdateEntry { nodeId: number; changeType: number; supportedCCs: CommandClasses[]; controlledCCs: CommandClasses[]; } export declare function parseSUCUpdateEntry(buffer: BytesView, offset: number): SUCUpdateEntry | undefined; export declare function encodeSUCUpdateEntry(entry: SUCUpdateEntry | undefined): Bytes; //# sourceMappingURL=sucUpdateEntry.d.ts.map