import * as React from "react"; declare type RolesType = "img" | "presentation"; declare type Icon = React.FunctionComponent<{ icon: React.SVGAttributes; inheritSize?: boolean; role?: RolesType; title?: string; desc?: string; }>; declare const Icon: Icon; export default Icon;