import { Dependencies } from "../dependencies"; import { Plugin } from "../cli"; export declare const ALLOWED_LANGUAGES_FOR_CODE_GENERATION: string[]; export interface GenerateCodeCLIOptions { language: string; outDir: string; tag?: string | string[]; react?: boolean; individualFeatures?: boolean; } export declare function generateCodeForProject(deps: Dependencies, cliOptions: GenerateCodeCLIOptions): Promise; export declare const generateCodePlugin: Plugin;