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