import { CallClientState, RemoteParticipantState } from "../../calling-stateful-client/src";
import { CallingBaseSelectorProps } from './baseSelectors';
/**
 * Selector type for all remote participants.
 * @public
 */
export type AllRemoteParticipantsSelector = (state: CallClientState, props: CallingBaseSelectorProps) => {
    [key: string]: RemoteParticipantState;
} | undefined;
/**
 * Selector for all remote participants in a call, active and inactive.
 * @public
 */
export declare const allRemoteParticipantsSelector: AllRemoteParticipantsSelector;
//# sourceMappingURL=remoteParticipantsSelector.d.ts.map