from typing import Dict, List, Tuple, Optional def parse_headers(raw_headers: List[Dict[str, str]]) -> Dict[str, str]: ... def extract_sender(headers: Dict[str, str]) -> Tuple[str, Optional[str]]: ...