import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Wait
 * @section Actions > Scripting > Control Flow
 * @icon Scripting
 *
 * Waits for the specified number of seconds before continuing with the next action.
 *
 * ```js
 * wait({
 *   time: 19,
 * });
 * ```
 */
declare const wait: ({ time, }: {
    /** The number of seconds to wait */
    time?: number | undefined;
}) => WFWorkflowAction;
export default wait;
