import React, { CSSProperties } from 'react'; import './styles.scss'; export interface LinkProps { href?: string; icon?: string; hideIcon?: boolean | false; target?: [string, string] | string; className?: string; style?: CSSProperties; children?: string | React.ReactNode; allowWordWrap?: boolean; [key: string]: any; } export declare const Link: { ({ href, icon, hideIcon, target, className, style, children, allowWordWrap, ...props }: LinkProps): React.JSX.Element; defaultProps: { href: string; hideIcon: boolean; target: string[]; className: string; style: { whiteSpace: string; }; children: string; allowWordWrap: boolean; }; }; //# sourceMappingURL=component.d.ts.map