import * as constants from './constants'; export declare type BinaryNode = { tag: string; attrs: { [key: string]: string; }; content?: BinaryNode[] | string | Uint8Array; }; export declare type BinaryNodeAttributes = BinaryNode['attrs']; export declare type BinaryNodeData = BinaryNode['content']; export declare type BinaryNodeCodingOptions = typeof constants;