import type { Integration } from './client/types/types';
export declare const setupAmplitudeIntegration: Integration;
export interface AmplitudeAPI {
    init: (token: string) => void;
    track: (event_name: string, properties?: any, options?: any) => void;
    identify: (unique_id: string) => void;
    Identify: any;
    getInstance: () => any;
}
