declare const newrelicContext: unique symbol;
export interface NewRelicContext {
    [newrelicContext]: unknown;
}
export declare function getNewrelicContext(): NewRelicContext | undefined;
export declare function setNewrelicContext(context: NewRelicContext | undefined): void;
export {};
