import { ComponentProps, ElementType } from 'react'; type Anchor = ComponentProps<'a'>; type Props = { href: string; button?: boolean; Component?: ElementType; } & Anchor; export default function Link({ button, children, className, Component, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};