declare const coreConfig: { projectId: string; pitsUrl: string; tokenDefaultTTL: number; graphqlPath: string; restPath: string; }; declare const buildConfig: { bundleBuildCallbackUrl: string; bundleBuildCallbackMethod: string; }; declare const playerConfig: { controllerEndpointTemplate: string; controllerEndpointSecret: string; }; declare const searchConfig: { docType: string; elasticSearchUri: string; indexName: (type: string) => string; }; declare const pubsubConfig: { topics: { contentItemImport: string; pieContentImport: string; checkPendingBuilds: string; checkPendingBuild: string; checkBuild: string; indexSearchMetaData: string; buildCompleted: string; }; localResolution: { indexSearchMetaData: boolean; checkBuild: boolean; }; }; declare const storageConfig: { buckets: { contentItemImport: string; pieContentImport: string; assets: string; firestoreBackup: string; }; }; /** * Whether emulators should be loaded instead of actual service references. This function tried to detect * whether we are running code in the context of unit tests or if not, if NODE_ENV is set to an appropriate value. */ declare const shouldUseEmulators: () => boolean; export { coreConfig, buildConfig, searchConfig, pubsubConfig, storageConfig, playerConfig, shouldUseEmulators }; //# sourceMappingURL=index.d.ts.map