import { PropsWithChildren } from 'react'; interface RawLinkProps { href: string; children: React.ReactNode; } export declare const RawLink: ({ children, href, ...props }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};