import { Interactor } from '../../models/interactor.mjs'; import { StoreEventInteractor } from '../event/store-event.interactor.mjs'; import '../../models/event.mjs'; import '../../models/exception.mjs'; import '../../repositories/event.repository.mjs'; interface AttributionCaptureInteractorProps { url: URL; } declare class AttributionCaptureInteractor implements Interactor<[input: AttributionCaptureInteractorProps], Promise> { private readonly storeEventInteractor; constructor(storeEventInteractor: StoreEventInteractor); execute({ url }: AttributionCaptureInteractorProps): Promise; } export { AttributionCaptureInteractor };