import type { ActionPropertiesKeyword, TContext } from '../../types'; type Options = Partial; interface ToCtxParams { body: string; from: string; prevRef?: string; keyword?: string; options?: Options; index?: number; } /** * @param params ToCtxParams * @returns Context */ declare const toCtx: ({ body, from, prevRef, keyword, options, index }: ToCtxParams) => TContext; export { toCtx }; //# sourceMappingURL=toCtx.d.ts.map