export declare class ArrayHelper {
    static uniq<T>(input: T[]): T[];
    static concatIntoArray<T>(source: T[], target: T[]): void;
}
