1/// <reference types="node" /> 2import type { BinaryNode, BinaryNodeCodingOptions } from './types'; 3export declare const encodeBinaryNode: ({ tag, attrs, content }: BinaryNode, opts?: Pick<BinaryNodeCodingOptions, 'TAGS' | 'TOKEN_MAP'>, buffer?: number[]) => Buffer; 4 5