export declare type Events = "onClick" | "pageview" | "showStory" | "deepLink" | "postImpression" | "sales"; export declare type Props = Record; /** * * @param url requird plasuble paramter determins top pages */ export interface ClickEventProps extends Props { url?: string; } /** * * * @param currency currency is a ISO 4217 string representing the currency code, e.g. "USD" or "EUR" * @param amount should be a string string, e.g. "1322.22". We suggest using number.toPrecision() on your numbers / floats * before recording them */ export interface Revenue { currency: string; amount: string; }