import * as React from 'react';
export interface BaseProps {
    /** ID for the link */
    id?: string;
    /** The url to link to */
    url?: string;
    /** The content to display inside link */
    children?: React.ReactNode;
    /** Use for a links that open a different site */
    external?: boolean;
    /** Callback when a link is clicked */
    onClick?(): void;
}
export interface Props extends BaseProps {
}
export default function Link({ url, children, onClick, external, id }: Props): JSX.Element;
