"""
 Defines the RealtimePresence class and its dependencies.
"""

from typing import Optional

from ..types import PresenceOpts


class SyncRealtimePresence:
    def __init__(self, channel, opts: Optional[PresenceOpts] = None):
        pass
