import type { ReactNode } from 'react'; export type Props = { readonly children?: ReactNode; readonly url: string; readonly fallback?: ReactNode; }; export default function Link({ children, url, fallback }: Props): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Link.d.ts.map