import React from 'react';
declare function IconButton({ children, className, width, title, height, strict, onClick, disabled, id, }: {
    children: JSX.Element;
    title?: string;
    width?: number;
    height?: number;
    className?: string;
    strict?: boolean;
    onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
    disabled?: boolean;
    id?: string;
}): JSX.Element;
declare namespace IconButton {
    var defaultProps: {
        className: string;
        width: number;
        height: number;
        title: string;
        strict: boolean;
        id: undefined;
        onClick: () => void;
        disabled: boolean;
    };
}
export default IconButton;
