import { AnchorHTMLAttributes, Ref, ReactElement, ReactNode, PureComponent } from 'react';
import PropTypes from 'prop-types';
import { CombinePropsAndAttributes } from '../../helpers';
import { AlignSide, AlignSideVariant } from '../common/types';
interface ISelfProps {
elementRef?: Ref;
icon?: ReactElement;
flexIcon?: boolean;
alignIcon?: AlignSide;
rel?: string;
target?: string;
linkElement?: any;
linkElementCustomProps?: {
[prop: string]: any;
};
children?: ReactNode;
}
export declare type IProps = CombinePropsAndAttributes>;
export default class Link extends PureComponent {
static propTypes: {
elementRef: PropTypes.Requireable<(...args: any[]) => any>;
icon: PropTypes.Requireable;
flexIcon: PropTypes.Requireable;
alignIcon: PropTypes.Requireable;
rel: PropTypes.Requireable;
target: PropTypes.Requireable;
children: PropTypes.Requireable;
linkElement: PropTypes.Requireable;
linkElementCustomProps: PropTypes.Requireable