import React from 'react';
import type { ILinkProps } from '@fluentui/react';
export interface UILinkProps extends ILinkProps {
    secondary?: boolean;
}
/**
 * UILink component
 * based on https://developer.microsoft.com/en-us/fluentui#/controls/web/link
 *
 * @exports
 * @class UILink
 * @extends {React.Component<UILinkProps, {}>}
 */
export declare class UILink extends React.Component<UILinkProps, {}> {
    /**
     * Initializes component properties.
     *
     * @param {UILinkProps} props
     */
    constructor(props: UILinkProps);
    /**
     * @returns {JSX.Element}
     */
    render(): JSX.Element;
}
//# sourceMappingURL=UILink.d.ts.map