import type { ReactNode } from 'react'; import type { ButtonProps } from '../Button'; import type { IconProps } from '../Icon'; type OmitProps = 'leftIcon' | 'rightIcon' | 'justIcon'; export type IconButtonProps = Omit & { 'aria-label': string; size?: ButtonProps['size']; icon: IconProps['icon']; tooltip?: ReactNode; }; export declare const IconButton: import("react").ForwardRefExoticComponent<(Omit, "leftIcon"> | Omit, "rightIcon"> | Omit, "justIcon">) & import("react").RefAttributes>; export {};