import * as React from 'react'; import { IconButtonProps } from '@mui/material'; /** * An IconButton with a tooltip which ensures the tooltip is closed on click to avoid ghost tooltips * when the button position changes. */ export declare const IconButtonWithTooltip: ({ label, onClick, ...props }: IconButtonWithTooltipProps) => React.JSX.Element; export interface IconButtonWithTooltipProps extends IconButtonProps { label: React.ReactNode; } //# sourceMappingURL=IconButtonWithTooltip.d.ts.map