import type { BehaviorSubject } from '@corbado/shared-ui'; import type { CustomThemes } from '@corbado/types'; import type { FC, PropsWithChildren } from 'react'; interface ThemeProviderProps extends PropsWithChildren { theme?: string | CustomThemes; darkModeSubject: BehaviorSubject | undefined; } export declare const ThemeProvider: FC; export {};