/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { Bytes } from "@matter/general"; import { Schema } from "./Schema.js"; /** See {@link MatterSpecification.v10.Core} ยง 5.1.3.1 */ declare class Base38Schema extends Schema { protected encodeInternal(data: Bytes): string; private encodeBase38; protected decodeInternal(encoded: string): Bytes; private decodeBase38; } export declare const Base38: Base38Schema; export {}; //# sourceMappingURL=Base38Schema.d.ts.map