export declare type ISizeAvatar = 'sm' | 'xs' | 'md' | 'lg' | 'custom';
export interface IAvatar {
    /**
     * Adjust size
     */
    size: ISizeAvatar;
    imageUrl?: string;
    isActive?: boolean;
    /** className only working with size = custom and imageUrl */
    className?: string;
}
