Allocation: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): Allocation;
    encode(message: Allocation, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: AllocationAmino): Allocation;
    fromAminoMsg(object: AllocationAminoMsg): Allocation;
    fromPartial(object: {
        account?: string;
        orderId?: bigint;
        quantity?: string;
    }): Allocation;
    fromProtoMsg(message: AllocationProtoMsg): Allocation;
    toAmino(message: Allocation): AllocationAmino;
    toProto(message: Allocation): Uint8Array;
    toProtoMsg(message: Allocation): AllocationProtoMsg;
}