import "reflect-metadata"; /** * Options for direct schema creation from Drizzle models. */ export interface CreateSchemaOptions { host?: string; port?: number; user?: string; password?: string; dbName?: string; entitiesPath: string; } /** * Creates/updates DB schema directly from Drizzle models. * Uses drizzle-kit push to apply DDL immediately. */ export declare const createSchema: (options: CreateSchemaOptions) => Promise;