import { CatOAuth2ConfigInterface } from '../interfaces/cat-oauth2-config.interface'; export interface CatEnvironmentOAuthInterface extends CatOAuth2ConfigInterface { name: string; } export interface CatEnvironmentInterface { production: boolean; storageTokenName?: string; storageOpenIDTypeName?: string; hostApi?: string; oauthConfig?: CatEnvironmentOAuthInterface[]; } export declare class CatEnvironment { static environment: CatEnvironmentInterface; }