import * as React from 'react';
type LinkProps = {
    to?: string;
    target?: '_self' | '_blank';
    external?: boolean;
    className?: string;
    style?: React.CSSProperties;
    [key: string]: unknown;
};
export declare function Link(props: React.PropsWithChildren<LinkProps>): React.JSX.Element;
export {};
