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