import type { Url } from "../../types/api-response-fields"; import * as React from "react"; export interface GetLinkProps { href?: string; linkToURL?: string; } /** * @deprecated This component will be removed from Griddo in the future. */ declare function Link(props: LinkProps): React.JSX.Element; interface LinkProps { url: Url; linkProp?: string; children: JSX.Element; [key: string]: unknown; } export { Link };