import { FC, PropsWithChildren } from 'react'; declare enum Brand { AutoScout24 = "autoscout24", MotoScout24 = "motoscout24" } type ThemeProviderProps = { /** * The brand theme to use */ theme: Brand; }; declare const ThemeProvider: FC>; export { ThemeProvider }; export type { ThemeProviderProps };