import React from 'react'; import { AnchorProps, LinkComponent } from './types'; type Props = { children: string | string[]; linkComponent?: LinkComponent; } & AnchorProps; declare const _default: React.MemoExoticComponent<({ children, ...rest }: Props) => React.JSX.Element>; export default _default;