import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime'; import { AnchorHTMLAttributes } from 'react'; import { SharedButtonProps } from './@types/SharedButtonProps.js'; interface LinkButtonProps extends SharedButtonProps, AnchorHTMLAttributes { } /** * [Storybook](https://guardian.github.io/storybooks/?path=/story/source_react-components-linkbutton--primary-priority-default-theme) • * [Design System](https://theguardian.design/2a1e5182b/p/435225-button) • * [GitHub](https://github.com/guardian/csnx/tree/main/libs/@guardian/source/src/react-components/button/LinkButton.tsx) • * [NPM](https://www.npmjs.com/package/@guardian/source) * * Buttons enable users to make choices or perform actions. * */ declare const LinkButton: ({ priority, size, iconSide, icon: iconSvg, nudgeIcon, hideLabel, cssOverrides, children, theme, ...props }: LinkButtonProps) => _emotion_react_jsx_runtime.JSX.Element; export { LinkButton }; export type { LinkButtonProps };