export interface AvatarClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; /** Class name applied to the img element if either `src` or `srcSet` is defined. */ img: string; /** Class name applied to the fallback icon */ fallback: string; /** Class name applied to the root element if the link is keyboard focused. */ focusVisible: string; /** Class name applied to the root element if `disabled={true}`. */ disabled: string; } export type AvatarClassKey = keyof AvatarClasses; export declare function getAvatarUtilityClass(slot: string): string; declare const avatarClasses: AvatarClasses; export default avatarClasses;