import React from 'react'; import { Account } from '../lib/graphql/types/v2/graphql'; type AvatarWithLinkProps = { account: Pick; secondaryAccount?: Partial | null; /** The size in pixels */ size: number; }; /** * [GraphQL V2 ONLY] A wrapper around `Avatar` that wraps it in a Link, with support for an optional second * profile to be displayed in the corner. */ export declare const AvatarWithLink: ({ account, secondaryAccount, size }: AvatarWithLinkProps) => React.JSX.Element; export {};