/** * 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: (arr: (T | undefined | null)[]) => NonNullable[];