import type { Integration } from './client/types/types';
export declare const setupMixpanelIntegration: Integration;
export interface MixpanelPeopleAPI {
    set: (metadata: {
        [k: string]: any;
    }) => void;
}
export interface MixpanelAPI {
    init: (token: string, config?: any, name?: string) => void;
    track: (event_name: string, properties?: any, options?: any) => void;
    identify: (unique_id: string) => void;
    people: MixpanelPeopleAPI;
}
