import { ObjectOf } from 'tn-typescript'; import { ExoResultClass } from '../../ExoResult/ExoResult'; import { ExoConstructor } from '../../accessories/ExoTypings'; import { ExoGraph } from '../ExoGraph'; export type ExoGraphResult = ExoConstructor | [ExoConstructor] | ObjectOf | [ObjectOf]; export declare const exoGraphSetupResult: (exog: ExoGraph) => { clsname: string; result: ExoConstructor | [ExoConstructor]; } | undefined;