export declare function noop(): void; export declare const extend: { (target: T, source: U): T & U; (target: T_1, source1: U_1, source2: V): T_1 & U_1 & V; (target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W; (target: object, ...sources: any[]): any; }; export declare const inBrowser: boolean; export declare function isDef(val: T): val is NonNullable; export declare function isFunction(val: unknown): val is Function; export declare function isPromise(val: unknown): val is Promise; export declare function isObject(val: unknown): val is Record; export declare function get(object: any, path: string): any; export type Writeable = { -readonly [P in keyof T]: T[P]; }; export declare function pick(obj: T, keys: ReadonlyArray, ignoreUndefined?: boolean): Writeable>; export declare function once(fn: (...args: any) => void): (...args: any) => void;