export declare type GeneratorType = 'typescript' | 'javascript'; 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

; } export declare type Maybe = null | undefined | T;