import { CallClientState } from "../../calling-stateful-client/src";
import { CallingBaseSelectorProps } from './baseSelectors';
import { CallParticipantListParticipant } from "../../react-components/src";
/**
 * Selector type for {@link ParticipantList} component.
 *
 * @public
 */
export type ParticipantListSelector = (state: CallClientState, props: CallingBaseSelectorProps) => {
    participants: CallParticipantListParticipant[];
    myUserId: string;
};
/**
 * Selects data that drives {@link ParticipantList} component.
 *
 * @public
 */
export declare const participantListSelector: ParticipantListSelector;
//# sourceMappingURL=participantListSelector.d.ts.map