import { Item, UUID } from './Item'; import { ChannelSceneRecurrence } from './ChannelSceneRecurrence'; import { FlowrColor } from './Color'; export declare class ChannelScene extends Item { guiId: UUID; guiUuid: UUID; uuid?: UUID; color?: FlowrColor; startDate: number; stopDate?: number; startTime: string; stopTime: string; recurrence: ChannelSceneRecurrence; constructor(src: ChannelScene); }