import type { FC, PropsWithChildren } from 'react'; export interface LinkProps { href: string; className?: string; } export declare const Link: FC>;