import React from 'react'; export type AnchorProps = Omit, 'href'> & { truncate?: number; }; export type LinkComponentProps = { href: string; } & AnchorProps; export type LinkComponent = React.ElementType;