import { type ReactNode } from "react"; import { Types } from "@a2ui/lit/0.8"; /** * Default theme with Tailwind CSS classes for ShadCN-style components. */ export declare const defaultTheme: Types.Theme; export interface ThemeProviderProps { children: ReactNode; theme?: Types.Theme; } /** * Theme Provider for A2UI components. * Provides CSS class mappings for all components. */ export declare function ThemeProvider({ children, theme, }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element; /** * Hook to access the theme context. * Returns the default theme if no provider is found. */ export declare function useTheme(): Types.Theme; //# sourceMappingURL=ThemeContext.d.ts.map