import { BaseRequest } from './base-request';
/** @description Basic structure for a request to normalize tracking data from inbound tracking data requests (e.g. webhooks) */
export interface NormalizeTrackingDataRequest extends BaseRequest {
    /** @description The request's data, e.g. the body of the webhook http request */
    data: string;
    /** @description Headers sent with the inbound request if it was received via http */
    headers: Record<string, string[]>;
}
