import Avatar from './components/Avatar';
import BrandMono from './components/BrandMono';
import Mono from './components/Mono';
export type CompoundedIcon = typeof Mono & {
    Avatar: typeof Avatar;
    Brand: typeof BrandMono;
    colorPrimary: string;
    title: string;
};
declare const Icons: CompoundedIcon;
export default Icons;
