interface AwaitConfig { type?: 'time' | 'event' | 'webhook' | 'schedule'; delay?: number; event?: string; filterKey?: string; method?: string; path?: string; cron?: string; timezone?: string; timeout?: number; timeoutAction?: 'fail' | 'continue' | 'retry'; } interface AwaitData { method?: string; webhookUrl?: string; timeout?: number; timeoutAction?: string; eventName?: string; filterKey?: string; [key: string]: any; } type __VLS_Props = { data: { label: string; awaitType?: 'time' | 'event' | 'webhook' | 'schedule'; awaitConfig?: AwaitConfig; awaitData?: AwaitData; status?: 'idle' | 'waiting' | 'resolved' | 'timeout'; startedAt?: string | Date; scheduledTriggerAt?: string | Date; }; }; declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;