/** Magic bytes for an LAEBNDL/v1 plaintext bundle. Treat as read-only. */ export declare const LAEBNDL_MAGIC: Readonly; export declare const LAEBNDL_HEADER_SIZE = 20; export declare const LAEBNDL_ENTRY_SIZE = 24; export interface LaebndlSegment { /** Segment role from the table (e.g. "decoder", "encoder"). */ role: string; /** Payload size in bytes (decoded from u64 LE; capped at MAX_SAFE_INTEGER). */ size: number; /** Zero-copy view into the input plaintext buffer. */ bytes: Uint8Array; } export declare class LaebndlParseError extends Error { constructor(message: string); } export declare function parseLaebndl(plaintext: Uint8Array): LaebndlSegment[];