import type { BehavioralMetadataEvent, FpRequestPayload } from '../types';
export declare function post(data: BehavioralMetadataEvent[], token: string, baseUrl: string, path: string, onload: (status: number, data: BehavioralMetadataEvent[]) => void): Promise<void>;
export declare function sendFpRequestPayload({ payload, token, baseUrl, path, }: {
    payload: FpRequestPayload;
    token: string;
    baseUrl: string;
    path: string;
}): Promise<Response>;
