LongBook: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): LongBook;
    encode(message: LongBook, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: LongBookAmino): LongBook;
    fromAminoMsg(object: LongBookAminoMsg): LongBook;
    fromPartial(object: {
        entry?: {
            allocations?: {
                account?: string;
                orderId?: bigint;
                quantity?: string;
            }[];
            assetDenom?: string;
            price?: string;
            priceDenom?: string;
            quantity?: string;
        };
        price?: string;
    }): LongBook;
    fromProtoMsg(message: LongBookProtoMsg): LongBook;
    toAmino(message: LongBook): LongBookAmino;
    toProto(message: LongBook): Uint8Array;
    toProtoMsg(message: LongBook): LongBookProtoMsg;
}