I need to config output format, to edit some fields defined as type Date.
I don't know if it is the case, but you can make a custom output using render attribute on the header prop, like this:
<Table
headers={[
{ field: 'date', title: 'Date', render: rowData => new Date(rowData.date).toLocaleDateString() }
]}
>
On render, you need to return a function that receives the object in that row, that function need to return a string, or a jsx attribute.
I am not sure if this is what you're looking for, but you can specify date, datetime, or time as the type property within columns:

This is the code that builds my data:

The columns object:

Rendered:

Most helpful comment
I don't know if it is the case, but you can make a custom output using render attribute on the header prop, like this:
On render, you need to return a function that receives the object in that row, that function need to return a string, or a jsx attribute.