export interface SyncSchemaFromDumpConfig { host?: string; port?: number; username: string; password: string; database?: string; } /** * Syncs the database schema from a pre-generated SQL dump file. * This is significantly faster than TypeORM's synchronize() which needs to * introspect all entities and diff the schema. * * Uses a checksum to skip the sync if the schema is already up to date. * * The dump file is generated during the nova-orm CI/CD build process and * included in the published package. * * @param config - Database connection configuration * @param dumpPath - Optional path to the SQL dump file. Defaults to the dump * bundled with the package. */ export declare function syncSchemaFromDump(config: SyncSchemaFromDumpConfig, dumpPath?: string): Promise;