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