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