export default Link;
/**
 * @deprecated - Components in the legacy folder (/src/legacy) are deprecated. Please use a component from the components folder (/src/components) instead. Legacy components may not follow accessibility standards.
 **/
declare function Link({ className, children, color, disabled, tag, theme, ...props }: {
    [x: string]: any;
    className: any;
    children: any;
    color: any;
    disabled: any;
    tag: any;
    theme: any;
}): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
declare namespace Link {
    namespace propTypes {
        let children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
        let className: PropTypes.Requireable<string>;
        let color: PropTypes.Requireable<string>;
        let disabled: PropTypes.Requireable<boolean>;
        let tag: PropTypes.Requireable<string>;
        let theme: PropTypes.Requireable<string>;
    }
    namespace defaultProps {
        let children_1: any;
        export { children_1 as children };
        let className_1: string;
        export { className_1 as className };
        let color_1: string;
        export { color_1 as color };
        let disabled_1: boolean;
        export { disabled_1 as disabled };
        let tag_1: string;
        export { tag_1 as tag };
        let theme_1: string;
        export { theme_1 as theme };
    }
    let displayName: string;
}
import React from 'react';
import PropTypes from 'prop-types';
