import { OnErrorHandler } from 'trackx/types'; /** * TrackX Browser Info Plugin * * @see https://docs.trackx.app/#/guides/tracking-errors.md#plugins-browser */ declare const screenSize: () => string; declare const embedded: () => string; declare const ancestors: () => string[]; declare const auto: OnErrorHandler; export { ancestors, auto, embedded, screenSize };