export class FeatureBase { constructor(agentRef: any, featureName: any); /** @type {Object} */ agentRef: Object; /** @type {import('../../common/event-emitter/contextual-ee').ee} */ ee: any; /** @type {string} */ featureName: string; /** * Blocked can be used to prevent aggregation and harvest after initialization time of the feature. * This can currently happen if RUM response setToken flag is 0, which is tied to ingest account entitlement info. * @type {boolean} */ blocked: boolean; deregisterDrain(): void; } //# sourceMappingURL=feature-base.d.ts.map