/// import { proto } from '../Proto'; import { BinaryNode } from './types'; export declare const getBinaryNodeChildren: ({ content }: BinaryNode, childTag: string) => BinaryNode[]; export declare const getAllBinaryNodeChildren: ({ content }: BinaryNode) => BinaryNode[]; export declare const getBinaryNodeChild: ({ content }: BinaryNode, childTag: string) => BinaryNode; export declare const getBinaryNodeChildBuffer: (node: BinaryNode, childTag: string) => Uint8Array | Buffer; export declare const getBinaryNodeChildString: (node: BinaryNode, childTag: string) => string; export declare const getBinaryNodeChildUInt: (node: BinaryNode, childTag: string, length: number) => number; export declare const assertNodeErrorFree: (node: BinaryNode) => void; export declare const reduceBinaryNodeToDictionary: (node: BinaryNode, tag: string) => { [_: string]: string; }; export declare const getBinaryNodeMessages: ({ content }: BinaryNode) => proto.WebMessageInfo[];