import type { PrimitiveAnchorProps, PrimitiveButtonProps } from '../primitives'; import { LinkLarge, LinkDefault } from '../common'; export type Props = PrimitiveAnchorProps & Pick & { type?: LinkLarge | LinkDefault; }; /** * Standard Link component with navigate away icon * * Documentation: https://transferwise.github.io/neptune-web/components/content/Link */ declare const Link: ({ className, children, href, target, type, "aria-label": ariaLabel, onClick, disabled, ...props }: Props) => import("react").JSX.Element; export default Link; //# sourceMappingURL=Link.d.ts.map