import * as React from "react" interface OutboundLinkProps { onClick?: (event: React.MouseEvent) => void eventAction?: string eventCategory?: string eventLabel?: string } export class OutboundLink extends React.Component< OutboundLinkProps & React.HTMLProps, any > {} export interface CustomEventArgs { category: string action: string label?: string value?: number nonInteraction?: boolean transport?: "beacon" | "xhr" | "image" hitCallback?: Function callbackTimeout?: Number } export function trackCustomEvent(args: CustomEventArgs): void