import { ComponentType } from 'react';
import { StreamVideoParticipant } from '@stream-io/video-client';
type CallParticipantListingItemProps = {
    /** Participant object be rendered */
    participant: StreamVideoParticipant;
    /** Custom component used to display participant's name */
    DisplayName?: ComponentType<{
        participant: StreamVideoParticipant;
    }>;
};
export declare const CallParticipantListingItem: ({ participant, DisplayName, }: CallParticipantListingItemProps) => import("react/jsx-runtime").JSX.Element;
export {};
