import { ButtonHTMLAttributes, ReactNode } from 'react'; import { IconSvgElement } from '@hugeicons/react'; import { ActionIconProps } from '@mantine/core'; declare const ActionIcon: import('react').ForwardRefExoticComponent & ButtonHTMLAttributes & { label: ReactNode; icon: IconSvgElement; iconColor?: string; tooltipDisabled?: boolean; flexBorder?: boolean; } & import('react').RefAttributes>; export default ActionIcon; //# sourceMappingURL=ActionIcon.d.ts.map