import { JSXOutput, PropsOf } from '@builder.io/qwik';
type AvatarProps = PropsOf<'div'> & {
    alt?: string;
    bordered?: boolean;
    img?: string | JSXOutput;
    color?: 'failure' | 'gray' | 'info' | 'pink' | 'purple' | 'success' | 'warning';
    rounded?: boolean;
    size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
    stacked?: boolean;
    status?: 'away' | 'busy' | 'offline' | 'online';
    statusPosition?: 'bottom-left' | 'bottom-right' | 'bottom-center' | 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center' | 'center-right';
    placeholderInitials?: string;
};
export declare const Avatar: import("@builder.io/qwik").Component<AvatarProps>;
export {};
