import React from 'react'; declare type LinkAttributes = React.ComponentPropsWithoutRef<'a'>; export interface LinkProps extends Omit { /** * Add custom className to the component */ className?: string; /** * Determine font-size of the component */ fontSize?: number; /** * A shortcut for `fontSize={14}` */ large?: boolean; /** * A shortcut for `fontSize={12}` */ small?: boolean; /** * You can specify it as a `string url` of the page the link goes to or as a `function` and it will execute when `Link` is clicked. */ onClick?: string | ((e: React.MouseEvent) => void); } export {};