import { TrackIdentifier } from '@livekit/components-core'; import * as React from 'react'; /** @public */ export interface UseMediaTrackOptions { element?: React.RefObject | null; props?: React.HTMLAttributes; } /** * @internal */ export declare function useMediaTrackBySourceOrName(observerOptions: TrackIdentifier, options?: UseMediaTrackOptions): { publication: import('livekit-client').TrackPublication | undefined; isMuted: boolean | undefined; isSubscribed: boolean | undefined; track: import('livekit-client').Track | undefined; elementProps: React.HTMLAttributes; }; //# sourceMappingURL=useMediaTrackBySourceOrName.d.ts.map