import { DataCell } from '../data-cell';
import { BaseCellPool } from './base';
export declare class DataCellPool extends BaseCellPool<DataCell> {
    release(cell: DataCell): void;
}
