import { Cloneable } from "./utils/Cloneable.js"; export interface ISubCborRef { _bytes: Uint8Array; start: number; end: number; } export declare class SubCborRef implements ISubCborRef, Cloneable { _bytes: Uint8Array; start: number; end: number; constructor({ _bytes, start, end }: ISubCborRef); toString(): string; toBuffer(): Uint8Array; clone(): SubCborRef; }