import * as wasm from './wasm'; import { ByteArray } from './ByteArray'; export declare class SectionBuffer { id: wasm.Section; bytes: ByteArray; constructor(id: wasm.Section); write(byte: number): this; writeString(str: string): this; }