///
import type { PDSIconType, UiColors } from '../../common';
export type IconButtonProps = {
fillType?: 'fill' | 'line';
shapeType?: 'circular' | 'rectangle';
baseSize?: 'xxlarge' | 'large' | 'medium' | 'small' | 'xsmall';
baseColorKey?: UiColors;
borderColorKey?: UiColors;
iconSize?: 12 | 16 | 20 | 24 | 48 | 72;
iconFillType?: 'fill' | 'line';
iconName: PDSIconType;
iconColorKey?: UiColors;
shadow?: 'hidden' | 'visible';
colorTheme?: 'none' | 'line1' | 'line2';
type?: 'submit' | 'reset' | 'button';
state?: 'normal' | 'disabled';
tabIndex?: number;
onClick?: (e: React.MouseEvent) => void;
onMouseDown?: (e: React.MouseEvent) => void;
};
declare function IconButton({ fillType, shapeType, baseSize, baseColorKey, borderColorKey, iconSize, iconFillType, iconName, iconColorKey, shadow, colorTheme, type, state, tabIndex, onClick, onMouseDown }: IconButtonProps): JSX.Element;
export default IconButton;