/**
 * Removes empty items from an array
 *
 * @param arr - The array to remove empty items from
 * @returns The array with empty items removed
 */
export declare const removeEmptyItems: <T = any>(arr: (T | undefined | null)[]) => NonNullable<T>[];
