/**
 * Return a unique array of primitive members
 * Sorts the array
 * @private
 */
export declare function arrayUnique<T>(array: T[]): T[];
export declare const alphabetically: (a: any, b: any) => 1 | -1 | 0;
export declare const removeStr: (arr: string[], element: string) => string[];
