import { ComponentChildren } from "preact";
type IconButtonProps = {
    children: ComponentChildren;
    onClick?: () => void;
    active?: boolean;
    disabled?: boolean;
};
declare const IconButton: ({ children, onClick, active, disabled }: IconButtonProps) => import("preact").JSX.Element;
export default IconButton;
