import { ReactNode } from 'react'; export type UniversalLinkProps = { href: string; children: ReactNode; className?: string; testId?: string; }; export declare const UniversalLink: ({ children, testId, href, className }: UniversalLinkProps) => JSX.Element; //# sourceMappingURL=UniversalLink.d.ts.map