import { PolymorphicPropsWithRef } from '../../utilities/polymorphism/polymorphism.cjs';
export type LinkProps<ElementType extends React.ElementType> = PolymorphicPropsWithRef<ElementType, {
    external?: boolean;
}>;
