import type { BackgroundInfo } from "./types";
export declare function detectTerminalBackground(): BackgroundInfo;
export declare function detectBrowserBackground(): BackgroundInfo;
export declare function detectSystemBackground(): BackgroundInfo;
export declare function detectBackground(): BackgroundInfo;
export declare function isDarkBackground(): boolean;
export declare function isLightBackground(): boolean;
export declare function getRecommendedThemeMode(): "light" | "dark";
export declare function watchBackgroundChanges(callback: (info: BackgroundInfo) => void): () => void;
