import { type AvatarProps } from "../../internal-flex-commons/src"; import * as React from "react"; import { CSSProps } from "../CSSProps"; /** * @typedef Theme.AvatarThemeProps * @property {CSSProps} Container container * @property {CSSProps} AvailabilityIcon availability icon */ export interface AvatarThemeProps { Container: CSSProps; AvailabilityIcon: CSSProps; } export { AvatarProps }; /** * This component renders an avatar component. * Can be themed with `Theme.Avatar` in [Theme](Theme). * * @component * @category Components / Basic * @param {Avatar.AvatarProps} props * @hideconstructor * @private */ export declare class Avatar extends React.PureComponent { render(): JSX.Element; }