/** * @module vim-ts */ import { BFast, NumericArray } from './bfast'; export declare class EntityTable { private readonly bfast; private readonly strings; constructor(bfast: BFast, strings: string[] | undefined); getLocal(): Promise; static getTypeSize(colName: string): number; getCount(): Promise; getArray(columnName: string): Promise; getNumberArray(columnName: string): Promise; getNumber(elementIndex: number, columnName: string): Promise; getBigIntArray(columnName: string): Promise; getBigInt(elementIndex: number, columnName: string): Promise; getBoolean(elementIndex: number, columnName: string): Promise; getBooleanArray(columnName: string): Promise; toIndex(value: number | bigint): number; getString(elementIndex: number, columnName: string): Promise; getStringArray(columnName: string): Promise; }