import { BackgroundAgentManager } from "./manager"; export type BackgroundAgentContext = { manager: BackgroundAgentManager; }; export declare function initBackgroundAgent(): BackgroundAgentContext; export declare function getBackgroundAgent(): BackgroundAgentContext; export declare function resetBackgroundAgent(): void;