import * as React from "react"; import "react/jsx-runtime"; import { UrlObject } from "url"; //#region src/components/atoms/Link.web.d.ts type LinkProps = { href?: string | UrlObject; children?: React.ReactNode; className?: string; prefetch?: boolean; replace?: boolean; scroll?: boolean; shallow?: boolean; target?: string; rel?: string; onClick?: React.MouseEventHandler; } & Record; //#endregion export { LinkProps }; //# sourceMappingURL=Link.web.d.ts.map