/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { TypeFromSchema } from "../tlv/TlvSchema.js"; /** * Price * * This data type represents an amount of money in a given currency. * * @see {@link MatterSpecification.v151.Core} § 7.19.2.54 */ export declare const TlvPrice: import("../tlv/TlvObject.js").ObjectSchema<{ amount: import("../tlv/TlvObject.js").FieldType; currency: import("../tlv/TlvObject.js").FieldType; decimalPoints: import("../tlv/TlvObject.js").FieldType; }>>; }>; /** * Price * * This data type represents an amount of money in a given currency. * * @see {@link MatterSpecification.v151.Core} § 7.19.2.54 */ export interface Price extends TypeFromSchema { } //# sourceMappingURL=Price.d.ts.map