import { ForwardRefExoticComponent, RefAttributes, HTMLAttributes } from 'react'; import { AvatarFallbackProps, AvatarImageProps, AvatarRootProps } from '@base-ui/react/avatar'; import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; interface AvatarVariantProps { variant?: 'default' | 'nordic' | 'aurora' | 'fjord' | 'dusk' | 'orange' | 'sky' | 'overflow' | null; sizes?: 'default' | 'xsm' | 'xxsm' | null; } declare const avatarVariants: (props?: (AvatarVariantProps & ClassProp) | undefined) => string; declare const Avatar: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const AvatarImage: ForwardRefExoticComponent & RefAttributes>; declare const AvatarFallback: ForwardRefExoticComponent & RefAttributes>; declare const AvatarIcon: ForwardRefExoticComponent & RefAttributes>; export { Avatar, AvatarImage, AvatarFallback, AvatarIcon };