/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { Branded } from "@matter/general"; import { TlvWrapper } from "../tlv/TlvWrapper.js"; /** * A Fabric ID is a 64-bit number that uniquely identifies the Fabric within the scope of a particular root CA. * * @see {@link MatterSpecification.v10.Core} ยง 2.5.1 */ export type FabricId = Branded; export declare function FabricId(value: Parameters[0]): FabricId; export declare namespace FabricId { const NO_FABRIC: FabricId; } /** Tlv schema for a Node Identifier. */ export declare const TlvFabricId: TlvWrapper; //# sourceMappingURL=FabricId.d.ts.map