export interface IconButtonProps {
    size?: number;
    borderRadius?: number;
    backgroundColor?: string;
    hoverBackgroundColor?: string;
    borderColor?: string;
    borderThickness?: string;
    loading?: boolean;
    loaderColor?: string;
    openLink?: string;
    openLinkInNewTab?: boolean;
    clickFunction?: () => void;
    icon?: string;
    iconColor?: string;
    iconsSize?: number;
    isDisabled?: boolean;
}
declare const WOIIconButton: (props: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
export default WOIIconButton;
