import React from 'react';
import { IconButtonProps as MuiIconButtonProps } from '@mui/material';
export interface IconButtonProps extends MuiIconButtonProps {
    /**
     * The tooltip text to display
     */
    tooltip?: string;
    /**
     * The variant of the icon button
     */
    variant?: 'contained' | 'outlined' | 'text';
    /**
     * Whether the button should pulse
     */
    pulse?: boolean;
}
export declare const IconButton: React.FC<IconButtonProps>;
//# sourceMappingURL=IconButton.d.ts.map