from typing import NewType """Typings for Snowflake Connector.""" SqlQuery = str BoundParams = tuple[str | int, ...] ColName = str StagePath = NewType("StagePath", str) # Type alias for Snowflake stage path