import { RowCell } from '../row-cell'; import { BaseCellPool } from './base'; export declare class RowCellPool extends BaseCellPool { private readonly cellIdPool; acquire(): RowCell | undefined; release(cell: RowCell): void; }