import React from 'react'; import { type ServiceStatus } from '#services/docker.js'; import type { Phase } from '#views/dev/dev_app.js'; /** * Worker first (most-watched in development), then API, then everything * else alphabetically. Promoting the priority list to a constant keeps * the comparator three lines. */ export declare const compareService: (a: ServiceStatus, b: ServiceStatus) => number; export declare const SERVICES_HINTS: { key: string; label: string; }[]; export declare const SERVICES_BOOT_HINTS: never[]; export declare const ServicesPanel: React.FC<{ height: number; phase: Phase; services: ServiceStatus[]; dockerComposePath: string; }>;