export interface CyncDeviceModel { deviceType: number; modelName: string; marketingName?: string; notes?: string; } /** * Device catalog keyed by deviceType. * Extend this as you discover more types. */ export declare const DEVICE_CATALOG: Record; export declare function lookupDeviceModel(deviceType: number): CyncDeviceModel | undefined;