/** * Copyright 2023 Kapeta Inc. * SPDX-License-Identifier: BUSL-1.1 */ import { BlockDefinition, Plan } from '@kapeta/schemas'; import { Application } from './types'; export type PlanContext = { plan: Plan; blocks: BlockDefinition[]; }; export declare const transformToPlan: (handle: string, application: Application) => Promise;