import { FetchBreadcrumbHint, HandlerDataFetch, SentryWrappedXMLHttpRequest, XhrBreadcrumbHint } from '@sentry/core'; import { GLOBAL_OBJ } from '@sentry/core'; export declare const WINDOW: typeof GLOBAL_OBJ & Pick> & Partial>; export type NetworkMetaWarning = 'MAYBE_JSON_TRUNCATED' | 'TEXT_TRUNCATED' | 'URL_SKIPPED' | 'BODY_PARSE_ERROR' | 'BODY_PARSE_TIMEOUT' | 'UNPARSEABLE_BODY_TYPE'; type RequestBody = null | Blob | BufferSource | FormData | URLSearchParams | string; export type XhrHint = XhrBreadcrumbHint & { xhr: XMLHttpRequest & SentryWrappedXMLHttpRequest; input?: RequestBody; }; export type FetchHint = FetchBreadcrumbHint & { input: HandlerDataFetch['args']; response: Response; }; export {}; //# sourceMappingURL=types.d.ts.map