/** * The action to take on success */ export declare enum NextAction { None = "None", Synthesize = "Synthesize" } /** * The on success configuration */ export interface OnSuccess { /** * The action to take on success */ action?: NextAction; }