import { IUser } from '@giphy/js-types'; import { h } from 'preact'; type Props = { user: IUser; className?: string; }; declare const Avatar: ({ user, className }: Props) => h.JSX.Element; export default Avatar;