import type { FC } from 'react'; import type { TdAvatarProps } from './type'; import type { StyledProps } from '../common'; export interface AvatarProps extends TdAvatarProps, StyledProps { } declare const Avatar: FC; export default Avatar;