declare const environmentList: readonly ["demo", "production"]; export declare type IEnvironment = typeof environmentList[number]; export declare const isIEnvironment: (d: any) => d is "demo" | "production"; export {};