/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { ClusterModel, ValueModel } from "@matter/model"; import { TlvSchema } from "./TlvSchema.js"; /** * Obtain the TLV schema for a model or namespace element. * * Accepts a {@link ClusterModel}, {@link ValueModel}, or an object with a `schema` property (e.g. a * {@link ClusterType.Attribute}). */ export declare function TlvOfModel(source: ClusterModel | ValueModel | { schema: ClusterModel | ValueModel; }): TlvSchema; //# sourceMappingURL=TlvOfModel.d.ts.map