export declare function noop(): void; export declare const extend: { (target: T, source: U): T & U; (target: T, source1: U, source2: V): T & U & V; (target: T, source1: U, source2: V, source3: W): T & U & V & 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) | null): (...args: any) => void;