import { default as React } from 'react';
export interface AvatarTextProps {
    src?: string;
    fallback?: string;
    title: string;
    subtitle?: string;
    size?: 'sm' | 'md' | 'lg';
    status?: 'online' | 'offline' | 'busy' | 'away';
    className?: string;
    id?: string;
    titleId?: string;
    subtitleId?: string;
}
export declare const AvatarText: React.FC<AvatarTextProps>;
