import { VFile } from "vfile"; // Define the structure of outputVars with support for multiple types export type OutputVars> = { [K in keyof T]: T[K]; }; // Define a custom VFile type that includes outputVars export interface SymbolxVfile> extends VFile { data: { outputVars?: OutputVars; [key: string]: any; }; }