export declare function noop(): void; export declare function pass(anything: T): T; export declare function always(): boolean; export declare function never(): boolean; export declare function panic(message?: string): never; export declare function mergeArray(to: any[], ...froms: any[][]): any[]; export declare function isPlainObject(obj: any): obj is Record; export declare function timeBegin(tag: string): void; export declare function timeEnd(tag: string): void;