import type { BuiltinCategoryName, CategoryConfig } from "../../types/category"; export type CategoryName = BuiltinCategoryName; export interface CategoryDefinition extends Required> { model: string; variant?: string; promptAppend?: string; } export declare const DEFAULT_CATEGORY_DEFINITIONS: Record; export declare const DEFAULT_CATEGORIES: Record;