interface ICLIAuthCredentials { email?: string; secret?: string; } declare const Settings: { getProjectID: () => any; getExportDirectory: () => string; getExportConfigID: () => any; getAPIBaseURL: () => any; getAPIVersion: () => any; getProjectPath: () => any; setAuthCredentialsPassedViaCLI(options: ICLIAuthCredentials): void; getAuthEmail: () => any; getAuthSecret: () => any; }; export { Settings };