import { ReactComponentLike } from 'prop-types'; import React, { ComponentPropsWithoutRef } from 'react'; interface SafeAnchorProps extends ComponentPropsWithoutRef<'a'> { as: ReactComponentLike | string; htmlAs: ReactComponentLike | string; disabled?: boolean; [key: string]: any; } declare const SafeAnchor: React.ForwardRefExoticComponent & React.RefAttributes>; export default SafeAnchor;