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