import { type ReactNode } from 'react'; export type LinkContentProps = { children: ReactNode; icon?: JSX.Element; iconPosition?: 'start' | 'end'; isUnderlined: boolean; }; export declare const LinkContent: ({ children, icon, iconPosition, isUnderlined, }: LinkContentProps) => JSX.Element;