export { Time } from '@sofie-automation/shared-lib/dist/lib/lib'; export interface IBlueprintConfig { [key: string]: ConfigItemValue; } export declare type ConfigItemValue = BasicConfigItemValue | TableConfigItemValue | IBlueprintConfig; export declare type TableConfigItemValue = { _id: string; [key: string]: BasicConfigItemValue; }[]; export declare type BasicConfigItemValue = string | number | boolean | string[]; //# sourceMappingURL=common.d.ts.map