import { PropsWithChildren } from 'react'; import { ThemeConfig } from '../themes/DefaultThemes'; interface AuthThemeProviderProps { themeConfig: ThemeConfig; } export type AuthThemeContextProps = { backgroundMime: Promise; themeConfig: ThemeConfig; }; declare const AuthThemeProvider: ({ children, themeConfig, }: PropsWithChildren) => JSX.Element; declare const useAuthTheme: () => AuthThemeContextProps; export { AuthThemeProvider, useAuthTheme };