/**
 * DecorativeLink module.
 * @module @massds/mayflower-react/DecorativeLink
 * @requires module:@massds/mayflower-assets/scss/01-atoms/decorative-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 DecorativeLinkProps {
    href?: string;
    info?: string;
    text?: string;
    showFileIcon?: boolean;
    className?: string;
    details?: string;
    icon?: React.ReactElement;
    fileIcon?: React.ReactElement;
}
declare const DecorativeLink: {
    (props: DecorativeLinkProps): any;
    defaultProps: {
        href: string;
        text: string;
        showFileIcon: boolean;
    };
};
export default DecorativeLink;
