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