import { StmtBindParams } from "./wsParamsBase"; export declare class TableInfo { name: Uint8Array | undefined | null; tags: StmtBindParams | undefined | null; params?: StmtBindParams; length: number; textEncoder: TextEncoder; constructor(name?: string); getTableName(): Uint8Array | undefined | null; getTableNameLength(): number; getTags(): StmtBindParams | undefined | null; getParams(): StmtBindParams | undefined | null; setTableName(name: string): void; setTags(paramsArray: StmtBindParams): Promise; setParams(bindParams: StmtBindParams): Promise; } //# sourceMappingURL=wsTableInfo.d.ts.map