import type { Component } from 'vue'; export declare const icons: { hash: Promise; activity: Promise; attachment: Promise; bold: Promise; book: Promise; building: Promise; buildings: Promise; bulletList: Promise; chevronDown: Promise; clock: Promise; clockPlus: Promise; copy: Promise; deal: Promise; downloadCloud: Promise; editWithLine: Promise; file: Promise; filterLines: Promise; h1Icon: Promise; h2Icon: Promise; h3Icon: Promise; homeFilled: Promise; italic: Promise; layersTree: Promise; link: Promise; linkBroken: Promise; linkExternal: Promise; locationPin: Promise; mail: Promise; mobilePhone: Promise; numberedList: Promise; phone: Promise; refresh: Promise; send: Promise; settings: Promise; starOutline: Promise; starYellow: Promise; threeDots: Promise; timeLineMarker: Promise; trash: Promise; uploadCloud: Promise; user: Promise; userCircle: Promise; verticalDots: Promise; wallet: Promise; }; type CustomIcons = { [K in keyof typeof icons]: Component; }; declare module '@wisemen/vue-core-components' { interface Icons extends CustomIcons { } } export {};