import type { ColdCode } from "../core/types.js"; import { Matter, type MatterInit } from "./matter.js"; /** * Identifier-prefix primitive. * * KERIpy substance: `Prefixer` represents AID prefix material and accepts the * full KERI prefix derivation codex (`PreDex`), including transferable and * self-addressing derivation families. */ export declare class Prefixer extends Matter { constructor(init: Matter | MatterInit); get prefix(): string; } /** Parse and hydrate `Prefixer` from txt/qb2 bytes. */ export declare function parsePrefixer(input: Uint8Array, cold: Extract): Prefixer; //# sourceMappingURL=prefixer.d.ts.map