import { JSXComponent, PropType } from 'vue'; type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent; declare const IconValue: PropType; interface IconAliases { [name: string]: IconValue; } interface IconProps { tag: string; icon?: IconValue; disabled?: boolean; } type IconComponent = JSXComponent; interface IconSet { component: IconComponent; } declare const aliases: IconAliases; declare const mdi: IconSet; //# sourceMappingURL=mdi-svg.d.ts.map export { aliases, mdi };