import { ActionDesc, Action as RawAction } from 'openwhisk'; import { Tab, Table, MultiModalResponse } from '@kui-shell/core'; import { Action } from '../../models/resource'; export declare function asAction(raw: RawAction): Action; export declare function asActionTable(tab: Tab, raw: ActionDesc[]): Promise; /** * Default respondWith function. This creates a response that will * present as a multi-modal view. * */ export default function asActionResponse(raw: RawAction, defaultMode?: string): MultiModalResponse;