/** * Table class */ export declare class Table { root: any; static root: any; /** * Constructor * @param {*} root */ constructor(root: any); /** * sortBy function * @param {*} headerName * @param {*} typeSorting */ static sortBy(headerName: string, typeSorting: string): Promise; /** * getColumnData function * @param {*} headerName */ static getColumnData(headerName: string): Promise; }