import type { ReactElement } from 'react'; import type { Theme } from './theme'; interface ThemeProviderProps { children?: ReactElement; } export declare const useTheme: () => Theme; export declare const ThemeProvider: ({ children }: ThemeProviderProps) => JSX.Element; export {};