import type { ExecutableExpression } from "@hylimo/core"; import type { ContentModule } from "./content/contentModule.js"; /** * Creates the executable expressions for a diagram module * * @param diagramName the name of the diagram function * @param docs the documentation for the diagram function * @param requiredContents the contents for the diagram * @param allContents all available contents, defaults to {@link contents} * @returns the executable expressions for the diagram module */ export declare function createDiagramModule(diagramName: string, docs: string, requiredContents: ContentModule[], allContents?: ContentModule[]): ExecutableExpression[]; //# sourceMappingURL=generateDiagramModule.d.ts.map