import { JSX } from 'react'; import { PolymorphicComponentPropWithRef } from '../react-types'; type AvatarBaseProps = { href?: Href; }; export type AvatarProps = PolymorphicComponentPropWithRef>; type AvatarComponent = (props: AvatarProps) => JSX.Element; export declare const Avatar: AvatarComponent; export {};