/**
 *
 * This is the entry file for all {{ artifact }} across journeys.
 * This file is auto generated so please don't write any code in this file.
 */
{{#each list}}
import {{this.module}} from '{{this.importPath}}';
{{/each}}

export default interface JourneyRootState {
{{#each list}}
    readonly {{ camelCase this.module }}: {{this.module}}.ContainerState,
{{/each}}
}
