export declare const ENVIRONMENTS: readonly ["development", "staging", "production"]; export type ArtByCityEnvironment = typeof ENVIRONMENTS[number]; export type CacheStrategy = 'disabled' | 'memcache'; export type ArtByCityConfig = { environment: ArtByCityEnvironment; contracts: { atomicLicense: string; usernames: string; curation: { ownable: string; whitelist: string; collaborative: string; collaborativeWhitelist: string; }; following: string; }; cache: { type: CacheStrategy; }; }; export declare const DEFAULT_ARTBYCITY_CONFIG: ArtByCityConfig; export declare const ARTBYCITY_STAGING_CONFIG: ArtByCityConfig;