type IncludeCategory = 'auto-keyed' | 'name-keyed' | 'internal'; /** * Returns a string representation of the dependencies between each reactive primitive as they are at the point of invocation. * The return string is formatted as a mermaid flowchart. * @see [Mermaid](https://mermaid-js.github.io) * * @param {IncludeCategory[]} include */ export declare const visualizeDependencyGraph: (include?: IncludeCategory[]) => string; export {};