import type { ReactNode } from 'react'; import { type LinkProps as RACLinkProps } from 'react-aria-components'; import type { NavigationProps, WithRequired } from '../types.js'; import type { BaseTypographyProps, TextStyleOptions } from './types.js'; export interface LinkProps extends BaseTypographyProps, WithRequired, Pick, Pick { /** An icon displayed before the link text. */ iconStart?: ReactNode; /** An icon displayed after the link text. */ iconEnd?: ReactNode; } /** * Displays a textual link that allows users to navigate to another page or resource. * * See [link usage guidelines](https://ui.cimpress.io/components/link/). */ declare const _Link: (props: LinkProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Link as Link }; //# sourceMappingURL=link.d.ts.map