import React, { FC } from 'react'; import { SxProps } from '@mui/material'; import { type Color } from '../../types/button'; interface IconButtonProps { onClick?: (event?: any) => void; disabled?: boolean; sx?: SxProps; color?: Color; href?: string; target?: string; className?: string; children?: React.ReactNode; } export declare const IconButton: FC; export {};