import React, { AnchorHTMLAttributes } from 'react'; import { Theme } from '../../styles'; import { Omit } from '../../util'; import { BaseTextProps } from '../Text'; export type LinkProps = Omit, 'style'> & BaseTextProps; export declare function Link(props: P & BaseTextProps): JSX.Element; export declare const createStyles: (theme: Theme) => { link: React.CSSProperties; };
(props: P & BaseTextProps): JSX.Element; export declare const createStyles: (theme: Theme) => { link: React.CSSProperties; };