import { Color } from "../../lib/Color";
import { Component } from "../../types";
import '../../css/iconbutton.webgen.static.css';
import { CommonIconType } from "./Icon";
export declare const IconButton: ({ color, icon, clickOn }: {
    color?: Color | undefined;
    icon: CommonIconType | string;
    clickOn?: (() => void) | undefined;
}) => Component;
