import { StartEvent } from '../../Model/Events/index'; import { ProcessModelLike } from '../BaseElementViewModel'; import { EventViewModel } from './EventBaseViewModel'; /** * @swagger * components: * schemas: * StartEventViewModel: * description: A StartEvent. * allOf: * - $ref: '#/components/schemas/EventViewModel' * - type: object * properties: * timerType: * description: The type of the timer. * type: string * timerValue: * description: The value of the timer. * type: string * messageChannel: * description: The channel on which the Message Start Event will listen for messages. * type: string * signalChannel: * description: The channel on which the Signal Start Event will listen for signals. * type: string */ export declare class StartEventViewModel extends EventViewModel { timerType?: string; timerValue?: string; constructor(startEvent: StartEvent, processModel: ProcessModelLike); }