import { ObjectOf } from 'tn-typescript'; import { ExoArgClass } from '../../../../../ExoGraph/ExoArg/ExoArg'; import { EGSGraphArgs } from '../../../ExoGraphSchema/accessories/ExoGraphSchemaTypes'; export type EGCMainArg = { argname: string; argtype: string; tstype: string; }; type R = { mainargs: EGCMainArg[]; args: string; }; export declare const egcCreateArgs: (args: ObjectOf, graph: EGSGraphArgs) => R; export {};