import { Participant } from 'livekit-client'; import { ShallowRef, MaybeRef, ComputedRef } from 'vue'; export type ParticipantContext = ShallowRef; declare function useProvideParticipantContext(initialValue: Participant): ParticipantContext; declare function useParticipantContextRaw(): ParticipantContext | undefined; export { useParticipantContextRaw, useProvideParticipantContext }; export declare function useMaybeParticipantContext(): ParticipantContext | undefined; export declare function useParticipantContext(): ParticipantContext; export declare function useResolveParticipant(participantRef?: MaybeRef): ComputedRef; export declare function useEnsureParticipant(participantRef?: MaybeRef): ComputedRef; //# sourceMappingURL=useParticipantContext.d.ts.map