type ColState = { colId: string; hide?: boolean | null; }; /** * This method takes a column state and the list of visible columns * and returns a new column state that respects the order of the visible columns * while trying to keep the hidden columns in their original order. * */ export declare function sortColumnStateForVisibleColumns(columnState: T[], visibleColumns: string[]): T[]; export {};