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