/** * Registers a schema with the database adapter and runs any fixtures. * * Reads the table classes registered for `schemaId` via `@RegisterTable`, * builds a `SchemaDefinition`, constructs the `Schema` (which the adapter * provisions), then inserts fixtures for any table that declares one. * * @param schemaId Schema id matching the `@RegisterTable(_, schemaId)` calls */ export declare function RegisterSchema(schemaId: string): Promise;