import type { ColdCode } from "../core/types.js"; import { Matter, type MatterInit } from "./matter.js"; import { Tagger } from "./tagger.js"; /** * Message-type primitive (`ilk`) encoded via Tagger compact tag semantics. * * KERIpy semantics: `Ilker` is restricted to Tag3 (`X`) values that carry * compact Base64 ilk identifiers. */ export declare class Ilker extends Tagger { constructor(init: Matter | MatterInit); /** Decoded ilk value (alias of tag payload for this subclass). */ get ilk(): string; } /** Parse and hydrate `Ilker` from txt/qb2 bytes. */ export declare function parseIlker(input: Uint8Array, cold: Extract): Ilker; //# sourceMappingURL=ilker.d.ts.map