import { FunctionComponent } from "react"; import { BrandingConfig, ColorConfig } from "../utils/BrandingConfig"; declare const useTheme: () => { locale: string; styles: BrandingConfig; colors: ColorConfig; }; export declare type LangOverrideParam = { lang: string; resources: any; }; declare const NblocksThemeContextProvider: FunctionComponent<{ i18nOverrides?: LangOverrideParam[]; styleOverrides?: Partial; colorOverrides?: Partial; }>; export { NblocksThemeContextProvider, useTheme };