/// export type ThemeContextType = { theme: any; setTheme: (theme: any) => void; }; export declare const ThemeContext: import("react").Context; export declare const useCustomTheme: () => ThemeContextType;