import { IIconButtonProps } from '../Icon/types'; export interface IAvatarProps extends Omit { /** Renders text in the avatar. * * @default undefined */ text?: string; } export declare function Avatar({ text, children, testID, style, className, ...rest }: IAvatarProps): import("react/jsx-runtime").JSX.Element;