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