import * as ByteBuffer from "bytebuffer"; import IIntSerializer from "./IIntSerializer"; import { SerializerInput, SerializerOutput } from "../../ISerializer"; export default class Int32Serializer extends IIntSerializer { appendToByteBuffer(value: SerializerInput, bytebuffer: ByteBuffer): void; }