import FontIcon from "./Font"; import Icon from "./Icon"; import Button from "./Button"; export * from "./types"; export * from "./Font/icons"; type IIcon = typeof Icon & { Button: typeof Button; Font: typeof FontIcon; }; declare const IconWithButton: IIcon; export { IconWithButton as Icon };