import { JSX } from "react"; import { AvatarSize } from "../Avatar"; import { FlexProps } from "../Flex"; export interface EntityHeaderProps extends FlexProps { avatarSize?: AvatarSize; /** * @deprecated Use `RightButton` instead */ FollowButton?: JSX.Element; RightButton?: JSX.Element; imageUrl?: string; initials?: string; meta?: string | JSX.Element; name: string; smallVariant?: boolean; displayPrivateIcon?: boolean; theme?: "dark" | "light"; } export declare const EntityHeader: ({ avatarSize, FollowButton, RightButton, imageUrl, initials, meta, name, smallVariant, displayPrivateIcon, theme, ...restProps }: EntityHeaderProps) => import("react/jsx-runtime").JSX.Element;