import type { HTMLAttributes } from 'react'; export type AvatarContainerProps = { size?: 'x16' | 'x18' | 'x20' | 'x24' | 'x28' | 'x32' | 'x36' | 'x40' | 'x48' | 'x124' | 'x200' | 'x332'; } & HTMLAttributes; declare const AvatarContainer: ({ size, children, ...props }: AvatarContainerProps) => import("react/jsx-runtime").JSX.Element; export default AvatarContainer; //# sourceMappingURL=AvatarContainer.d.ts.map