"""ks_parser — production adapter for ks_xlsx_parser.

Exports:
    ksparser_to_sheets(xlsx_path) -> List[{'sheet_name': str, 'markdown': str}]
    ksparser_to_md(xlsx_path)     -> str  (whole-workbook; for CLI use)
"""
from src.extraction_v2.ks_parser.pipeline import ksparser_to_md, ksparser_to_sheets

__all__ = ["ksparser_to_sheets", "ksparser_to_md"]
