/** * AvatarStyle * * @property {string} height - The height of the avatar. * @property {string} width - The width of the avatar. * @property {string} border - The border of the avatar. * @property {string} borderRadius - The border radius of the avatar. * @property {string} backgroundColor - The background color of the avatar. * @property {string} nameTextColor - The color of the name text. * @property {string} backgroundSize - The size of the background. * @property {string} nameTextFont - The font of the name text. * @property {string} outerViewBorder - The border of the outer view. * @property {string} outerViewBorderSpacing - The border spacing of the outer view. * @property {string} outerViewBorderRadius - The border radius of the outer view. */ export declare class AvatarStyle { borderRadius?: string; width?: string; height?: string; border?: string; nameTextColor?: string; backgroundSize?: string; nameTextFont?: string; outerViewBorderWidth?: string; outerViewBorderSpacing?: string; outerViewBorderRadius?: string; outerViewBorderColor?: string; backgroundColor?: string; constructor(props: Partial); } //# sourceMappingURL=AvatarStyle.d.ts.map