import { type TableConfig } from "@bungres/orm"; export interface TableSchemaEntry { type: "table"; exportName: string; config: TableConfig; table: any; filePath: string; } export interface EnumSchemaEntry { type: "enum"; exportName: string; enumName: string; enumValues: string[]; filePath: string; } export interface ViewSchemaEntry { type: "view"; exportName: string; config: any; filePath: string; } export type SchemaEntry = TableSchemaEntry | EnumSchemaEntry | ViewSchemaEntry; export declare function loadSchemas(patterns: string | string[], cwd?: string): Promise; //# sourceMappingURL=schema-loader.d.ts.map