import { ComponentProps, FunctionComponent } from 'react'; import { PatronStar } from '../PatronStar'; import { CenteredText } from './elements'; type Props = ComponentProps & { avatarUrl: string; username: string; name?: string; hideBadge?: boolean; useBigName?: boolean; } & Partial, 'subscriptionSince'>>; export declare const UserWithAvatar: FunctionComponent; export {};