var React = require('react'); export type Qux = {baz: 'literal'}; import type SomeExternalType from './types'; type FooProps = { an_optional_string?: string, a_number: number, a_boolean: boolean, a_generic_object: Object, array_of_strings: Array<string>, instance_of_Bar: Bar, anything: any, mixed: mixed, one_of: 'QUACK' | 'BARK' | 5, one_of_type: number | string, nested_object_level_1: { string_pr

