import { ComponentType } from 'react';
import { StreamVideoParticipant } from '@stream-io/video-client';
export type CallParticipantListingProps = {
    /** Array of participant objects to be rendered */
    data: StreamVideoParticipant[];
    Header?: ComponentType;
};
export declare const CallParticipantListing: ({ data, }: CallParticipantListingProps) => import("react/jsx-runtime").JSX.Element;
