plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
12 lines (11 loc) • 438 B
TypeScript
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;