import React from 'react'; import cx from 'classnames'; import styles from './NavigationAvatar.module.scss'; export interface NavigationAvatarProps { /** Apply CSS class to the container. */ className?: Parameters[0]; /** If `true`, it will display its collapse state. */ isCollapsed?: boolean; /** The name of the account user. */ name: string; /** The url for the avatar image. If `undefined`, will display the full name initials. */ src?: string; } export declare const NavigationAvatar: React.FC; export default NavigationAvatar; export { styles }; //# sourceMappingURL=NavigationAvatar.d.ts.map