import { DeviceType, TemplateString } from '..';
export declare enum TimelineContentTypeSofieChef {
    URL = "url"
}
export type TimelineContentSofieChefAny = TimelineContentSofieChefScene;
export interface TimelineContentSofieChef {
    deviceType: DeviceType.SOFIE_CHEF;
    type: TimelineContentTypeSofieChef;
}
export interface TimelineContentSofieChefScene extends TimelineContentSofieChef {
    type: TimelineContentTypeSofieChef.URL;
    url: string | TemplateString;
}
//# sourceMappingURL=sofieChef.d.ts.map