import * as React from 'react'; type LinkProps = { to: string; target?: '_self' | '_blank'; external?: boolean; className?: string; style?: React.CSSProperties; innerRef?: React.Ref; languageInsensitive?: boolean; onClick?: () => void; [key: string]: unknown; }; export declare function Link(props: React.PropsWithChildren): React.JSX.Element; export {}; //# sourceMappingURL=Link.d.ts.map