/// import { ProfileInterface } from "../interfaces"; export interface AccountProps { profile: ProfileInterface; onAvatarClick: any; } export declare const Account: ({ profile, onAvatarClick }: AccountProps) => JSX.Element;