import { ModelFamily, ModelDetection } from "./types.js"; /** * Detect the model family from a model name. * * This function is used by the prompting system to determine which * prompting strategy to use. It combines architecture detection with * prompting-specific overrides. * * For technical architecture detection (ControlNet, IP-Adapter, etc.), * use the `architectures` registry directly instead. */ export declare function detectModelFamily(modelName: string): ModelDetection; /** * Get the family-specific prompting strategy name */ export declare function getStrategyName(family: ModelFamily): string;