export declare function ifElse(condition: boolean, then: T, otherwise?: S): T | S | undefined; export declare function flatten(array: any[]): any[]; export declare function removeEmptyValues(obj: T): object; export declare function removeEmptyStringValues(obj: { [key: string]: string | undefined | null; }): { [key: string]: string; }; export declare function msToMinutesAndSeconds(ms: number): string;