import { type SceneLibrary } from './govee-content.js'; /** * True when the SKU is an addressable (RGBIC) model, and so uses the richer scene set. * Derived from the app's `sku_ic.json`, which records an LED-segment count per model. */ export declare function isRgbicSku(sku: string): boolean; /** * Build a scene library for a device from the bundled catalogue. * * Returns `undefined` when the catalogue is unavailable, so callers can report that * no scenes could be offered rather than silently showing an empty picker. */ export declare function getOfflineSceneLibrary(sku: string, device: string): SceneLibrary | undefined;