export type InferenceServerModelViewModel = { modelType: 'classification' | 'object_detection' | 'constrained_object_detection' | 'freeform'; } & ({ mode: 'features'; featuresCount: number; } | { mode: 'image'; width: number; height: number; depth: 'Grayscale' | 'RGB'; showImagePreview: boolean; }); export type InferenceServerViewModel = { studioLink: string; owner: string; projectName: string; projectVersion: number; serverPort: number; model: InferenceServerModelViewModel; }; export declare const renderInferenceServerView: (vm: InferenceServerViewModel) => import("./escape-html-template-tag/escape").HtmlSafeString;