import React from 'react'; interface LinkProps { children: React.ReactChild; to: string; } export declare const Link: ({ to, children }: LinkProps) => JSX.Element; export {};