/** * Interface representing a choice. */ export interface MVChoice { name: string; value: string; description?: string; disabled?: boolean; } /** * Interface representing a map of choices. */ export interface MVChoiceMap { [key: string]: MVChoice[]; } /** * A map of project types and their corresponding choices. */ export declare const PROGRAMMING_LANGUAGES: MVChoiceMap; /** * A map of frontend frameworks and their corresponding choices. */ export declare const FRONTEND_FRAMEWORKS: MVChoiceMap; /** * A map of backend frameworks and their corresponding choices. */ export declare const BACKEND_FRAMEWORKS: MVChoiceMap; /** * A map of architecture patterns and their corresponding choices. */ export declare const ARCHITECTURE_PATTERNS: MVChoice[]; /** * A map of databases and their corresponding choices. */ export declare const DATABASES: MVChoice[];