import { TableSchema } from '../../schema/types'; export interface ErDiagramOptions { output?: string; yes?: boolean; } export declare const DEFAULT_ER_DIAGRAM_FILENAME = "ER-DIAGRAM.md"; /** * Renders `erDiagram` body only (no ```mermaid fences) so it can be embedded in a * Markdown file or tested directly against its text output. */ export declare function generateMermaidERDiagram(schemas: TableSchema[]): string; export declare function erdiagramCommand(options?: ErDiagramOptions): Promise; export default erdiagramCommand; //# sourceMappingURL=erdiagram.d.ts.map