import { JSX } from 'react'; export interface AvatarLetterProps { /** * Text to be used to generate initials */ text: string; /** * CSS class name */ className?: string; style?: React.CSSProperties; children?: (values: { initials: string; backgroundColor: string; textColor: string; }) => JSX.Element; } /** * This component can be used to show a profile picture without being forced to use an image. * * It takes the text and renders the initials with a background. * Given the same text, the background color will be always the same. */ export declare function AvatarLetter({ text, className, style, children, ...rest }: AvatarLetterProps): JSX.Element; export declare namespace AvatarLetter { var displayName: string; }