import { Event, EventProcessor, Hub, Integration } from '@sentry/types'; /** Options for the InboundFilters integration */ export interface InboundFiltersOptions { allowUrls: Array; denyUrls: Array; ignoreErrors: Array; ignoreInternal: boolean; } /** Inbound filters configurable by the user */ export declare class InboundFilters implements Integration { private readonly _options; /** * @inheritDoc */ static id: string; /** * @inheritDoc */ name: string; constructor(_options?: Partial); /** * @inheritDoc */ setupOnce(addGlobalEventProcessor: (processor: EventProcessor) => void, getCurrentHub: () => Hub): void; } /** JSDoc */ export declare function _mergeOptions(internalOptions?: Partial, clientOptions?: Partial): Partial; /** JSDoc */ export declare function _shouldDropEvent(event: Event, options: Partial): boolean; //# sourceMappingURL=inboundfilters.d.ts.map