import "../button/btn.css"; import React from "react"; import { BaseLinkElementProps } from "./BaseLink"; export type IconLinkProps = Omit & { "aria-label": string; /** The icon element to display. */ icon: React.ReactNode; }; /** * An icon-only link component that renders as an HTML `` element with * button-like styling. Requires an `icon` and `aria-label` for accessibility. * * @component * @see {@link https://planningcenter.github.io/tapestry/?path=/docs/components-link-icon-link--docs | Storybook Documentation} */ export declare const IconLink: React.ForwardRefExoticComponent & { "aria-label": string; /** The icon element to display. */ icon: React.ReactNode; } & React.RefAttributes>; //# sourceMappingURL=IconLink.d.ts.map