import React from "react"; type BaseAnchorAttributes = Omit, "href">; export type LinkComponentProps = BaseAnchorAttributes & { to: string; }; export type LinkComponent = React.ComponentType; export {};