import React, { ReactNode } from 'react'; import { AlgUIThemeContextType, AlgUITheme } from '../types/theme'; interface AlgUIThemeProviderProps { children: ReactNode; defaultTheme?: AlgUITheme; storageKey?: string; } export declare const AlgUIThemeProvider: React.FC; export declare const useAlgUITheme: () => AlgUIThemeContextType; export {};