/// import { ElementRef } from "@angular/core"; import { Feature } from "../feature"; export declare class IgGridResizingFeature extends Feature { constructor(el: ElementRef); /** * Destroys the resizing widget */ destroy(): void; /** * Resizes a column to a specified width in pixels, percents or auto if no width is specified. * * @param column An identifier for the column. If a number is provided it will be used as a columnIndex else if a strings is provided it will be used as a columnKey. * @param width Width of the column in pixels or percents. If no width or "*" is specified the column will be auto-sized to the width of the data in it (including header and footer cells). */ resize(column: Object, width?: Object): void; }