export type Language = "python" | "typescript" | "javascript" | "go" | "java" | "kotlin"; export declare const ALL_LANGUAGES: readonly Language[]; export declare function extensionsFor(language: Language): readonly string[]; export type Framework = "aiohttp" | "fastapi" | "flask" | "django" | "sqlalchemy" | "alembic" | "express" | "fastify" | "koa" | "nestjs" | "typeorm" | "prisma" | "sequelize" | "net-http" | "gin" | "echo" | "chi" | "gorm" | "spring" | "jax-rs" | "ktor" | "hibernate" | "jpa"; export declare const FRAMEWORKS_BY_LANGUAGE: Readonly>;