export declare type GeneratorType = 'typescript' | 'javascript' | 'flow' | 'go'; export declare type Interpolation

= FlattenInterpolation

| ReadonlyArray | ReadonlyArray>>; export declare type FlattenInterpolation

= InterpolationValue | InterpolationFunction

; export declare type InterpolationValue = string | number | boolean; export declare type SimpleInterpolation = InterpolationValue | ReadonlyArray>; export interface InterpolationFunction

{ (props: P): Interpolation

; }