import React from "react";
import { IconButtonProps as MuiIconButtonProps } from "@mui/material/IconButton";
import { IconProps } from "./Icon";
export interface IconButtonProps extends Omit<MuiIconButtonProps, "color" | "size"> {
    ariaLabel?: string;
    iconProps: IconProps;
}
declare const IconButton: React.FC<IconButtonProps>;
export default IconButton;
