import React from 'react'; import { type ChannelAvatarProps } from '../../components/Avatar/index'; import { type ChannelDetailProps } from './ChannelDetail'; export type AvatarWithChannelDetailProps = ChannelAvatarProps & { Avatar?: React.ComponentType; ChannelDetail?: React.ComponentType; }; export declare const AvatarWithChannelDetail: ({ Avatar, ChannelDetail, className, ...avatarProps }: AvatarWithChannelDetailProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AvatarWithChannelDetail.d.ts.map