import { ButtonBaseProps } from '../base/buttonBase'; /** * Props for {@link IconButton}. * Extends {@link ButtonBaseProps} except for text and trailing content. * * @category IconButton */ export type IconButtonProps = Omit; /** * Icon-only button used for compact or secondary actions. * * Use when an action is represented by an icon instead of text. * An accessible label (`aria-label` or `label`) is required. * * @category IconButton * @function * @param props - All icon button props inherited from {@link ButtonBase}. * * @example * } /> * * @example * * * */ export declare const IconButton: import('react').ForwardRefExoticComponent>;