export type InternalEnvs = 'staging' | 'dev'; export type PublicEnvs = 'sandbox' | 'cert' | 'prod'; export type EnvironmentOptions = InternalEnvs | PublicEnvs;