import { MajorType } from "../Cbor/Constants/index.js"; export declare function readCborTypeAndLength(bytes: Uint8Array): { type: MajorType; length: number | bigint | undefined; } | undefined;