/** * Trims string values of an object */ export declare function trimObjectStringValues(object: any): any; /** * Foreach like fn that iterates an array backwards */ export declare function findIndexFromEnd(array: Type[], fn: (value: Type) => {}): number; /** * Generates universally unique identifiers (version 4) to distinguish objects in the lists */ export declare function uuidv4(): string; /** * Sends GET reuest by a provided uri * Reusable window.fetch eror handler */ export declare function fetchByUri(uri: string): Promise;