import { VeroUser } from "./types/users";
import { VeroEvent } from "./types/events";
export default class Vero {
    private readonly authToken;
    private readonly apiUrl;
    Users: VeroUser;
    Events: VeroEvent;
    constructor(authToken: string);
    private sendToVero;
    private track;
    private reidentify;
    private editTags;
    private unsubscribe;
    private resubscribe;
    private trackEvent;
}
