import { PropsWithChildren } from 'react'; type AvatarProps = PropsWithChildren<{ color: string; type: 'filled' | 'outlined' | 'combined'; size: 'badge' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; variant: 'circular' | 'rounded' | 'square'; }>; declare function Avatar({ variant, children, color, type, size, ...others }: AvatarProps): import("react/jsx-runtime").JSX.Element; export { Avatar }; export type { AvatarProps }; //# sourceMappingURL=Avatar.d.ts.map