import type { ActionButtonProps, BaseButtonProps, SingleIconButtonProps } from './types.js'; export interface IconButtonProps extends BaseButtonProps, SingleIconButtonProps, ActionButtonProps { } /** * Displays an icon-only button that allows users to perform an action. * * See [button usage guidelines](https://ui.cimpress.io/components/button/). */ declare const _IconButton: (props: IconButtonProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _IconButton as IconButton }; //# sourceMappingURL=icon-button.d.ts.map