import { ComponentProps } from 'react';
import { StreamVideoParticipant } from '@stream-io/video-client';
import { Audio } from './Audio';
export type ParticipantsAudioProps = {
    /**
     * The participants to play audio for.
     */
    participants: StreamVideoParticipant[];
    /**
     * Props to pass to the underlying `Audio` components.
     */
    audioProps?: ComponentProps<typeof Audio>;
};
export declare const ParticipantsAudio: {
    (props: ParticipantsAudioProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
