declare const sizes: { sm: { box: string; text: string; }; md: { box: string; text: string; }; lg: { box: string; text: string; }; }; interface Props { name: string; size: keyof typeof sizes; } declare const Avatar: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Avatar;