import { Binary } from '../type.js'; import { VariableWidthBuilder, BuilderOptions } from '../builder.js'; /** @ignore */ export declare class BinaryBuilder extends VariableWidthBuilder { constructor(opts: BuilderOptions); get byteLength(): number; setValue(index: number, value: Uint8Array): void; protected _flushPending(pending: Map, pendingLength: number): void; }