import React from 'react'; import { ThemeProp } from './theme/ThemeProvider'; import { BrandConfigProviderStyles } from './styles/types'; import { Icons } from './icons/IconProvider'; interface Props { theme?: ThemeProp; styles?: BrandConfigProviderStyles; icons?: Partial; children: React.ReactNode; } export type Brand = Pick; export declare function BrandConfigProvider({ theme, styles, icons, children }: Props): React.JSX.Element; export {};