/** Replace all characters in string*/ export declare function replaceAll(value: string, search: string, replace: string): string; export declare const toBase64: (value: string) => string; export declare const shallowEquals: (obj1: any, obj2: any) => boolean; /** Get Domain from Url*/ export declare const getDomainFromUrl: (url: string) => string; /** Get Root Domain from Url or Subdomain*/ export declare const getRootDomainFromUrl: (url: string) => string; /** Create Range*/ export declare const RangeOf: (length: number) => number[]; /** * Simple object check. * @param item * @returns {boolean} */ export declare function isObject(item: any): boolean; /** * Asynchronously reads a file and converts its content to a base64-encoded string. * @param filePath The path of the file to be read. * @returns A promise that resolves to the base64-encoded string of the file's content. */ export declare const readFileAsBase64: (filePath: string) => Promise;