import { AbstractConfigLoader } from './loader'; export declare enum SentryConfigKeys { enable = "enable", dsn = "dsn" } export declare class SentryConfigObject extends AbstractConfigLoader { private static key; private static _; static get instance(): SentryConfigObject; enable: boolean; dsn: string; static load: (reload?: boolean) => SentryConfigObject; }