import React from 'react'; declare module 'react' { interface CSSProperties { [key: `--${string}`]: string | number; } } export declare function useTheme(): { theme: any; setTheme: any; customStyles: any; setCustomTheme: any; getColor: any; switchCustomColorPallet: any; }; export declare const ThemeProvider: (props: { theme?: any; setTheme?: any; setCustomStyles?: any; customStyles?: any; children: any; target?: string; initTheme?: string; useLocalStorage?: boolean; }) => React.JSX.Element;