import { ReactNode } from 'react'; import { textSizes } from '../Text'; type LinkProps = { src?: string; onClick?: () => void; display?: 'inline-block' | 'block' | 'flex'; children?: ReactNode; fontWeight?: string | number; fontSize?: keyof typeof textSizes; }; declare const Link: ({ src, onClick, children, fontWeight, fontSize, display }: LinkProps) => JSX.Element; export default Link;