import { Libraries } from '../../types/libraries.js'; /** * Resolve a dependency name (hyphenated or underscored) to a Python GT library. * Per PEP 503, Python package names are normalized: hyphens, underscores, and * periods are interchangeable. We match both gt-flask/gt_flask forms. */ export declare function resolveGtDependency(pkgName: string): typeof Libraries.GT_FLASK | typeof Libraries.GT_FASTAPI | null;