/**
 * Link module.
 * @module @massds/mayflower-react/Link
 * @requires module:@massds/mayflower-assets/scss/01-atoms/svg-icons
 * @requires module:@massds/mayflower-assets/scss/01-atoms/svg-loc-icons
 */
import React from 'react';
export interface LinkProps {
    href?: string;
    info?: string;
    text?: string;
    icon?: string;
    classes?: string;
    children?: React.ReactNode;
}
declare const Link: {
    (props: LinkProps): any;
    defaultProps: {
        href: string;
        info: string;
        text: string;
        icon: string;
    };
};
export default Link;
