export {};
declare global {
    interface Array<T> {
        /**
         * Creates a new Set with all the elements of the Array.
         * @returns an Set with the Array items
         */
        toSet(): Set<T>;
    }
}
