import "../button/btn.css"; import React from "react"; import { BaseLinkElementProps } from "./BaseLink"; export type LinkProps = Omit & { children?: React.ReactNode; label?: string; }; /** * A link component that renders as an HTML `` element with button-like * styling. Use for navigation; for actions that don't change the URL, use * `Button` instead. * * @component * @see {@link https://planningcenter.github.io/tapestry/?path=/docs/components-link--docs | Storybook Documentation} */ export declare const Link: React.ForwardRefExoticComponent & { children?: React.ReactNode; label?: string; } & React.RefAttributes>; //# sourceMappingURL=Link.d.ts.map