import { default as React } from 'react'; import { ColorType } from '../../utils/ui'; export interface LinkBaseProps { color?: ColorType; theme?: 'default' | 'secondary'; className?: string; disabled?: boolean; unstyled?: boolean; } export declare function getLinkClassName(props: LinkBaseProps): string; export declare function getLinkStyles(props: LinkBaseProps): React.CSSProperties; export type LinkProps = React.AnchorHTMLAttributes & LinkBaseProps; declare function Link(props: LinkProps): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;