type LogStyle = "Verbose" | "Silent" | "Default"; type ProvidedSchema = Record; type RelationMethod = "Explicit" | "ForeignKey"; interface DrizzleErdOpts { logStyle?: LogStyle; schema: ProvidedSchema; relationMethod?: RelationMethod; } interface DrizzleErdResult { dbml: string; svg: string; } declare const generateErd: ({ schema, relationMethod, logStyle, }: DrizzleErdOpts) => Promise; export { generateErd };