import React from 'react';
export interface LinkProps {
    to: string;
}
declare const Link: React.FC<LinkProps>;
export default Link;
