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