import './style.less'; export declare enum genderList { male = "male", female = "female" } interface Props { className?: string; url?: string; gender?: genderList; isPad?: boolean; } export default function Avatar(props: Props): JSX.Element; export default namespace Avatar { var AVATAR_MAP: { male: string; female: string; }; } export {};