/*! Copyright (c) 2019, XAPPmedia */ import { Translator } from "@xapp/patterns"; import { App } from "stentor-models"; import { Manifest } from "../package/Manifest"; /** * Translates and App to an Actions on Google Actions Package Manifest. * * Currently this can't be used because the Manifest is readonly and cannot be * set programmatically. This is acting merely as a place holder for now. * * @export * @class TranslateToActionsManifest * @extends {Translator} */ export declare class TranslateToActionsOnGoogleManifest extends Translator { translate(app: App): Manifest; }