import type { ModelInfo, TaskType } from '../../core/types.js'; export declare const STATIC_MODELS: ModelInfo[]; export declare function getStaticModelsByType(type: TaskType): ModelInfo[]; export declare function getStaticModelById(id: string): ModelInfo | undefined; export declare function getAllStaticModelIds(): string[]; export declare function mapParamsToKieInput(params: Record): Record;