import { ParticipantViewProps } from './ParticipantView';
export type ParticipantViewContextValue = Required<Pick<ParticipantViewProps, 'participant' | 'trackType'>> & {
    participantViewElement?: HTMLDivElement | null;
    videoElement?: HTMLVideoElement | null;
    videoPlaceholderElement?: HTMLDivElement | null;
};
export declare const ParticipantViewContext: import("react").Context<ParticipantViewContextValue | undefined>;
export declare const useParticipantViewContext: () => ParticipantViewContextValue;
