import Variable from '../interfaces/Variable';
/**
 * Creates a Magic Variable to be used as action output.
 *
 * ```js
 * const magic = actionOutput('My Magic Variable');
 * ```
 */
export declare const actionOutput: (name?: string | undefined) => Variable;
