import type { AirshipPluginWrapper } from './AirshipPlugin'; import type { JsonValue } from './types'; /** * Airship actions. */ export declare class AirshipActions { private readonly plugin; constructor(plugin: AirshipPluginWrapper); /** * Runs an Airship action. * * @param name The name of the action. * @param value The action's value. * @return A promise that returns the action result if the action * successfully runs, or the Error if the action was unable to be run. */ run(actionName: string, actionValue?: JsonValue): Promise; }