import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action URL
 * @section Content Types > Web > URLs
 * @icon URL
 *
 * Passes the specified URL to the next action.
 *
 * ```js
 * URL({
 *   url: 'https://shortcuts.fun',
 * });
 * ```
 */
declare const URL: ({ url, }: {
    /** The URL to set */
    url?: string | undefined;
}) => WFWorkflowAction;
export default URL;
