import { ComponentPropsWithoutRef, ReactNode } from 'react'; export declare const DEFAULT_CLASS = "govuk-link"; export interface LinkProps extends ComponentPropsWithoutRef<'a'> { children?: ReactNode | null; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } /** Create a link. See [GDS Links](https://design-system.service.gov.uk/styles/typography/#links) for more information */ export declare const Link: ({ href, children, classBlock, classModifiers, className, ...attrs }: LinkProps) => import("react/jsx-runtime").JSX.Element;