import { IconButtonProps as MuiIconButtonProps } from '@mui/material/IconButton'; import { PropsWithChildren } from 'react'; type IconButtonProps = PropsWithChildren<{ variant?: string; shape?: string; color?: string; }> & MuiIconButtonProps; declare const IconButton: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export { IconButton }; export type { IconButtonProps }; //# sourceMappingURL=IconButton.d.ts.map