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