from typing import TypedDict


class Browser(TypedDict):
    browser_type: str
    path: str
    display_name: str
    version: str
