import { Component } from 'solid-js';
export interface AvatarProps {
    initials?: string;
    round?: boolean;
}
export declare const Avatar: Component<AvatarProps>;
