/**
 * Делает первую букву заглавной
 * @param str
 */
declare function fUpCase(str: string): string;
/**
 * Получение свойства объекта в стиле "Dot notation"
 * @param obj
 * @param prop
 */
declare function getProp(obj: any, prop: string): any;
/**
 * Проверка строки на число
 * @param value
 */
declare function isNumeric(value: any): boolean;
declare function isEmpty(value: any): boolean;
export { fUpCase, getProp, isNumeric, isEmpty };
