import { StretchStrategy } from './_base'; /** * The strategy calculates the column widths by stretching all columns evenly. * * @private * @class StretchAllStrategy */ export declare class StretchAllStrategy extends StretchStrategy { /** * Calculates the columns widths. */ calculate(): void; }