export {};
declare global {
    interface Array<T> {
        /**
         * Verify if an erray is empty or not.
         * @returns true if the array is empty, false otherwise
         */
        isEmpty: boolean;
    }
}
