/* tslint:disable:all */ export declare class UtilsService { /** * Lodash native methods implementation: https://youmightnotneed.com/lodash/ */ /** * Gets the value at path of object. Note: If provided path does not exists inside the object js will generate error. * @param obj * @param path * @param defValue */ static sGet: (obj: any, path: any, defValue?: any) => any; /** * Sets the value at path of object. If a portion of path doesn't exist, it's created. Arrays are created for missing index properties while objects are created for all other missing properties. * @param obj * @param path * @param value */ static sSet: (obj: any, path: any, value: any) => any; /** * Checks if value is an empty object or collection. * @param obj */ static sIsEmpty: (obj: any) => boolean; } export declare function getBinFromCreditCardNumber(value: string): string; export declare function getBinFromCreditCardNumberSift(value: string): string;