import React from 'react'; import { Theme } from '@emotion/react'; import { LinkProps } from '../link/link'; export declare const getLinkStyles: (props: LinkWrapperProps, theme: Theme) => import("@emotion/utils").SerializedStyles; export type LinkWrapperProps = LinkProps & { link?: string; elementType?: 'div' | 'span' | 'p'; cssStyle?: any; }; declare const LinkWrapper: React.FC; export default LinkWrapper;