import { type LinkProps as RACLinkProps } from 'react-aria-components'; import type { NavigationProps, WithRequired } from '../types.js'; import type { BaseButtonProps, SingleIconButtonProps } from './types.js'; export interface IconLinkButtonProps extends Omit, SingleIconButtonProps, WithRequired, Pick { } /** * Displays an icon-only button that allows users to navigate to another page or resource. * * See [button usage guidelines](https://ui.cimpress.io/components/button/). */ declare const _IconLinkButton: (props: IconLinkButtonProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _IconLinkButton as IconLinkButton }; //# sourceMappingURL=icon-link-button.d.ts.map