import { SentryConfigDataInterface } from '../types/interfaces'; export declare class SentryConfig { private data; constructor(data: SentryConfigDataInterface); getSentryDsn(): string; getSentryEnvironment(): string; isRequired(): boolean; }