import { HMSPeer, HMSPeerID, HMSStore, HMSTrack, HMSTrackID } from '../schema'; export declare const selectTracksMap: (store: HMSStore) => Record; export declare const trackIDSelector: (store: HMSStore, trackID: HMSTrackID) => string; export declare const selectLocalAudioTrackID: import("reselect").OutputSelector string | undefined>; export declare const selectLocalVideoTrackID: import("reselect").OutputSelector string | undefined>; export declare const selectIsLocalAudioEnabled: (store: HMSStore) => boolean; export declare const selectIsLocalVideoEnabled: (store: HMSStore) => boolean; export declare const selectIsLocalVideoDisplayEnabled: (store: HMSStore) => boolean | undefined; export declare const selectIsPeerAudioEnabled: (store: HMSStore, peerID: string) => boolean; export declare const selectIsPeerVideoEnabled: (store: HMSStore, peerID: string) => boolean; export declare const selectIsLocalScreenShared: (store: HMSStore) => boolean; export declare const selectIsSomeoneScreenSharing: (store: HMSStore) => boolean; export declare const selectPeerScreenSharing: (store: HMSStore) => HMSPeer | undefined; export declare const selectScreenShareByPeerID: (store: HMSStore, peerID: HMSPeerID) => HMSTrack | undefined; export declare const selectCameraStreamByPeerID: (store: HMSStore, peerID: HMSPeerID) => HMSTrack | undefined;