export type GeneratorType = 'typescript' | 'javascript' | 'flow' | 'go'; export type Interpolation
= FlattenInterpolation
| ReadonlyArray = InterpolationValue | InterpolationFunction ;
export type InterpolationValue = string | number | boolean;
export type SimpleInterpolation = InterpolationValue | ReadonlyArray {
(props: P): Interpolation ;
}