import { GetPartnerData, GetPartnerParamsType } from "../types/utm-service.types";
export interface UtmServiceInterface {
    getPartner(utmParams: GetPartnerParamsType, defaultVerticals: string[]): Promise<GetPartnerData> | GetPartnerData;
}
