import type { Knex } from '../knex.types.js'; import { IndexManager011 } from './index-manager-011.js'; import type { CreateBm25Options, DropBm25Options, IndexSizeOptions } from './index.types.js'; export declare class IndexManager014 extends IndexManager011 { readonly dbh: Knex; constructor(dbh: Knex); /** * Create an Index * @link https://docs.paradedb.com/documentation/indexing/create_index */ createBm25New(options: CreateBm25Options): Promise; dropBm25New(options: DropBm25Options): Promise; private genCreateBm25Options; /** * Get the size of an index in bytes, * return zero if the index does not exist. * @link https://docs.paradedb.com/documentation/indexing/inspect_index#index-size */ size(options: IndexSizeOptions): Promise; } //# sourceMappingURL=index-manager-014.d.ts.map