import { Shape } from '../../core/enums/shape';
import { Size } from '../../core/enums/size';
import { UI } from '../../core/enums/ui';
import { DotComponent } from '../dot/dot.component';
export declare class AvatarComponent {
    readonly host = "jnt-avatar-host";
    ui: typeof UI;
    _size: Size;
    _shape: Shape;
    set size(size: Size);
    set shape(shape: Shape);
    icon: string;
    name: string;
    surname: string;
    image: string;
    dot: DotComponent;
}
