/**
 * Device registry -- single source of truth for all supported devices.
 *
 * Each entry maps a lowercase key to a {@link DeviceDefinition} that
 * contains the human-readable name, runtime constructor, and
 * device-specific actions.
 */
import type { DeviceDefinition } from "../types.js";
/** Map of device keys to their definitions. */
export declare const devices: Record<string, DeviceDefinition>;
//# sourceMappingURL=index.d.ts.map