import React from 'react'; import { CSS } from '../theme/stitches.config'; import { LinkVariantsProps } from './link.styles'; export interface Props { icon?: boolean; as?: keyof JSX.IntrinsicElements; } declare const defaultProps: { icon: boolean; }; declare type NativeAttrs = Omit, keyof Props>; export declare type LinkProps = Props & typeof defaultProps & NativeAttrs & LinkVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit & { css?: CSS | undefined; } & React.RefAttributes, "icon">>; export default _default;