/* @flow */ var Person; type Person = {name: {first: string; last: string;}; isActive: boolean;} module.exports.Person = Person