import Conf from 'conf'; declare enum Env { production = "production", staging = "staging", development = "development", local = "local" } declare class ChecklyConfig { private _auth?; private _data?; get auth(): Conf<{ apiKey: unknown; }>; get data(): Conf<{ accountId: unknown; accountName: unknown; }>; clear(): void; getEnv(): Env; getApiKey(): string; getAccountId(): string; hasEnvVarsConfigured(): boolean; getApiUrl(): string; getMqttUrl(): string; hasValidCredentials(): boolean; } declare const config: ChecklyConfig; export default config;