import { EventMeta } from 'trackx/types'; /** Global meta data sent with every event. Must be JSON serialisable. */ declare const meta: EventMeta; /** * Set up error tracking. * * @param endpoint - API endpoint; a URL including server origin, API version, * and your project ID e.g., `"https://api.trackx.app/v1/uvxpkibb17b"`. */ declare const setup: (endpoint: string) => void; export { meta, setup };