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