import { FasterConfigurationOptions } from './FasterConfigurationOptions'; declare class FasterConfiguration { static readonly FASTER_PLATFORM: string; static readonly FASTER_APP_VERSION?: string; static readonly FASTER_SDK_VERSION: string; static readonly FASTER_APP_KEY_HEADER = "X-fstr-application-key"; static readonly FASTER_SIGNATURE_HEADER = "X-fstr-signature"; readonly apiKey: string; readonly secretKey: string; readonly options: FasterConfigurationOptions; readonly eventRetryTimeout: number; readonly eventRetryMax: number; readonly baseUrl: string; constructor(apiKey: string, secretKey: string, options: FasterConfigurationOptions); } export default FasterConfiguration;