More about how to export will be provided in the Plugin section as exporting is done via a plugin allowing for far more flexible options. That said assuming your game is a JSON game your export result for the above might look as follows. There are many options how you would like this data exported and even some options to build classes for some languages that will help you consume these files.
{ "Monster": [{ "hitpoints": 8, "attacks": ["Tounge Lash", "Insult"], "name": "Frog", "description": "Green, wet and annoyed in near it's pond chasing away flies." }, { "hitpoints": 4, "attacks": ["Insult", "Sting"], "name": "Wasp", "description": "Red in color and mood. This is just a really unkind creature." } ], "Attacks": [{ "name": "Sting", "range": false, "damage": 3 }, { "name": "Insult", "range": true, "damage": 1 }, { "name": "Tounge Lash", "range": true, "damage": 2 } ] }