import { StylePreset, LoraRecommendation, ModelFamily } from "./types.js"; /** * Get LoRA recommendations based on style and available LoRAs */ export declare function getLoraRecommendations(style: StylePreset | undefined, availableLoras: string[], modelFamily: ModelFamily): { recommendations: LoraRecommendation[]; triggerWords: string[]; }; /** * Match available LoRAs against a user's style request */ export declare function findMatchingLoras(query: string, availableLoras: string[]): string[];