import type { Engine, Format } from './types'; declare const Graphviz: { loadWASM: () => Promise; layout: (source: string, format?: Format, engine?: Engine) => string; }; export default Graphviz; export type { Engine, Format };