import { EventHandlerStrategy } from "./EventHandlerStrategy"; import { StravaEventHandlerStrategy } from "./strava/StravaEventHandlerStrategy"; export declare class EventHandlerStrategyFactory { private readonly stravaEventHandlerStrategy; constructor(stravaEventHandlerStrategy: StravaEventHandlerStrategy); create(providerName: string): EventHandlerStrategy; }