export declare const safeGetLen: (len: number, minLen: number, maxLen: number) => number; type TGetterFunc = (nm: string) => T; interface IGetter { get: TGetterFunc; } /** * returns function that returns property value by name * @param {Sws.Record|Object} object instance either of Sws.Record or Object * @returns {Function} */ export declare const getGetter: (object: any) => TGetterFunc; export declare const safeGet: (object: any, prop: string) => T | null; export {};