import { PeripheralDeviceId } from '@sofie-automation/shared-lib/dist/core/model/Ids'; import { SubdeviceAction } from '@sofie-automation/shared-lib/dist/core/deviceConfigManifest'; import { TSR } from './timeline'; export type Omit = Pick>; export interface ObjId { _id: string; } export type OmitId = Omit; export declare enum NoteSeverity { WARNING = 1, ERROR = 2, INFO = 3 } export interface IBlueprintPlayoutDevice { deviceId: PeripheralDeviceId; deviceType: TSR.DeviceType; /** Available actions for the device */ actions: SubdeviceAction[] | undefined; } //# sourceMappingURL=lib.d.ts.map