import { BaseRequest } from './base-request';
/** @description Basic structure for a request to validate inbound data */
export interface ValidateInboundDataRequest 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[]>;
}
