import type { AuthoringExecutableGraphDocument, ExecutableGraphValidationError, NormalizedExecutableGraphDocument } from "@x12i/graphenix-executable-contracts"; export interface NormalizeExecutableGraphResult { document: NormalizedExecutableGraphDocument; warnings: ExecutableGraphValidationError[]; } export declare function normalizeExecutableGraphWithDiagnostics(doc: AuthoringExecutableGraphDocument): NormalizeExecutableGraphResult; export declare function normalizeExecutableGraph(doc: AuthoringExecutableGraphDocument): NormalizedExecutableGraphDocument; //# sourceMappingURL=normalize-executable-graph.d.ts.map