export declare class UniqueArray<T> {
    internalArray: Array<T>;
    push(...str: T[]): void;
    get(): Array<T>;
}
