import convict from 'convict'; declare const config: convict.Config<{ env: string; port: number; publicUrl: string; homePageUrl: string; playerUrl: string; rssEndpoint: string; fileEndpoint: string; firebase: { projectId: any; }; legacyApiEndpoint: string; storage: { bucket: any; }; logging: { level: any; rawOutput: any; }; email: { contact: any; }; blogRss: string; redis: { host: any; port: any; }; analytics: { location: any; dataset: any; tz: any; firebase: any; }; }>; export declare type Config = typeof config; export default config;