type BaseEnvironments = 'development' | 'staging' | 'production' type Environments = BaseEnvironments | 'temploy' | 'test' /** T parameter is needed to extend BaseEnvironments with 'temploy' or 'test' */ export type EnvironmentType = | T | BaseEnvironments export interface TextLabelProps { /** Defines if the text should be transformed to title case */ titleCase?: boolean }