import type { PlazbotSDK } from '../sdk-types';
import type { PlazbotTheme } from '../styles/theme';
import type { IconMode } from '../styles/icons';
export interface PlazbotContextValue {
    sdk: PlazbotSDK;
    agentId: string;
    theme: PlazbotTheme;
    iconMode: IconMode;
}
export declare const PlazbotContext: import("react").Context<PlazbotContextValue | null>;
export declare function usePlazbotContext(): PlazbotContextValue;
