import { TableSort } from '../types/shared/table-sort.type'; export declare function sort(inpArray: T[], sort: TableSort, strings: Array, sortNulls?: boolean): T[]; export declare function lastItem(array: T[]): T; export declare function toggleItem(array: T[], item: T, comparator?: (curr: T) => boolean): T[]; export declare function removeLast(arr: T[]): T[];