import { ComponentProps, CSSProperties } from 'react';
export type AvatarData = {
    imageSrc?: string;
    name?: string;
    style?: CSSProperties & Record<string, string | number>;
};
export type AvatarProps = AvatarData & ComponentProps<'img'>;
export declare const Avatar: ({ imageSrc, name, style, className, ...rest }: AvatarProps) => import("react/jsx-runtime").JSX.Element;
type AvatarFallbackProps = {
    names: string[];
    className?: string;
    style?: CSSProperties & Record<string, string | number>;
};
export declare const AvatarFallback: ({ className, names, style, }: AvatarFallbackProps) => import("react/jsx-runtime").JSX.Element;
export {};
