declare const APP_VERSION = "19"; declare const APP_ID = "durable"; /** * returns a new durable workflow schema * @param {string} app - app name (e.g., 'durable') * @param {string} version - number as string (e.g., '1') * @returns {string} HotMesh App YAML */ declare const getWorkflowYAML: (app: string, version: string) => string; export { getWorkflowYAML, APP_VERSION, APP_ID };