export interface IClassesConstants { table: string; wrapper: string; handleContainer: string; handle: string; tableResizing: string; columnResizing: string; } export interface IAttributesConstants { dataResizable: string; dataResizableTable: string; } export interface IDataConstants { resizable: string; resizableTable: string; } export interface IEvents { pointerDown: Array; pointerMove: Array; pointerUp: Array; windowResize: Array; eventResizeStart: string; eventResize: string; eventResizeStop: string; } export declare class ResizableConstants { static dataPropertyName: string; static classes: IClassesConstants; static attributes: IAttributesConstants; static data: IDataConstants; static events: IEvents; }